zabbix邮件告警

文章目录

  • zabbix邮件告警
    • 设置zabbix_server配置文件
    • 设置zabbixWEB UI
    • 测试报警

zabbix邮件告警

设置zabbix_server配置文件

vim /etc/zabbix/zabbix_server.conf
找到:AlertScriptsPath=/usr/lib/zabbix/alertscripts
cd /usr/lib/zabbix/alertscripts
把mail.py 挪到这个目录下来
给它一个执行权限 chmod +x mail.py

设置zabbixWEB UI

1 ) 设置报警媒介
Administration -> Media types -> 右上角(Create Media type)
Name: alert
Type: Script
Script name: mail.py
Script parameters -> Add {ALERT.SENDTO}/ Add {ALERT.SUBJECT}/Add {ALERT.MESSAGE}
Add
zabbix邮件告警_第1张图片
2)设置接收邮件地址
Administration -> Users -> Admin(或者新建用户)
Media -> Add
Type: alert
Send to: 邮箱地址,如 [email protected] //可以写多个
Add
Update
注意:Pemissions 一定要有 Read-write 权限

3)配置动作
Configuration -> Actions -> Create action
Name: send_mail
Operations
New
Send to Users -> Admin
Send only to -> alert
Conditions -> new -> Add
Add
Recovery operations
New
Send to Users -> Admin
Send only to -> alert
Add

Add
zabbix邮件告警_第2张图片

zabbix邮件告警_第3张图片

测试报警

Configuration -> Hosts -> Triggers
故意调整一个trigger
Monitoring -> Problems

你可能感兴趣的:(zabbix)