首页 > 代码库 > zabbix 告警自定义发件人

zabbix 告警自定义发件人

查看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页面配置如下


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



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

zabbix 告警自定义发件人