查看zabbix 告警脚本位置
[[email protected] 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 [email protected] "$to" $body EOF
其中 [email protected] 可以自行定义
#chmod +x alert.sh
web页面配置如下
至此 zabbix告警的发件人已经配置成脚本中指定的用户了
参考:https://www.zabbix.com/documentation/2.0/manual/config/notifications/media/script
时间: 2024-11-08 03:15:13