标签:operations action zabbix condition
(a)定义action 包括 conditions 和 operations
configuration --> actions --> create action action conditions operations
此时,我们添加一个item 对agent端的http服务80端口检测
并添加trigger 设置一旦最后一次探测值为0 就触发 action
观察过程 monitoring --> events
可以定义多个operations zabbix server 会按照步骤依次执行
operations 包括 send message 和 remote command 还有 发现主机等等 很多
(b)报警脚本
[root@zabbixserver ~]# vim /usr/lib/zabbix/alertscripts/sendmail.sh --> 必须在特定的目录下(服务器端) #!/bin/bash contact=$1 subject="$2" body="$3" echo "$body" | mail -s "$subject" "$contact"
本文出自 “似水流年” 博客,请务必保留此出处http://sixijie123.blog.51cto.com/11880770/1880226
zabbix之 定义action 包括condition和operations(6)
标签:operations action zabbix condition
原文地址:http://sixijie123.blog.51cto.com/11880770/1880226