码迷,mamicode.com
首页 > 其他好文 > 详细

zabbix 告警自定义发件人

时间:2014-11-24 13:50:01      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   on   2014   bs   ad   

查看zabbix 告警脚本位置

[root@zabbix alertscripts]# grep "^AlertScriptsPath" /etc/zabbix/zabbix_server.conf
AlertScriptsPath=/usr/lib/zabbix/alertscripts

编写告警邮件脚本

#cd /usr/lib/zabbix/alertscripts
#vim alert.sh
#!/bin/bash
#author firxiao
#date 20141124
to=$1
subject=$2
body=$3
cat <<EOF | mail -s "$subject" -S from=sender@example.com "$to"
$body
EOF

其中  from=sender@example.com 可以自行定义 

#chmod +x alert.sh


web页面配置如下

bubuko.com,布布扣


至此 zabbix告警的发件人已经配置成脚本中指定的用户了



参考:https://www.zabbix.com/documentation/2.0/manual/config/notifications/media/script

zabbix 告警自定义发件人

标签:http   io   ar   os   sp   on   2014   bs   ad   

原文地址:http://my.oschina.net/firxiao/blog/348140

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!