14 Zabbix Item类型之Simple checks类型
Simple checks通常用来检查远程未安装代理或者客户端的服务。
使用simple checks,被监控客户端无需安装zabbix agent客户端,zabbix server直接使用simple checks来收据数据,一基本上都是用来检测远程服务器某端口是否在监听。
如下:
simple checks: net.tcp.service[ftp,,155] net.tcp.service[http] net.tcp.service.perf[http,,8080]
使用基本检测去监控vmware服务器,需要填写User和Password字段,其他服务器可以忽略。
zabbx支持的基本检测
超时处理:
如果基本检测时间超过了zabbix配置文件设置的超市时间,zabbix将不会做处理.
ICMP pings zabbix使用外部命令fling处理
ICMP ping. fping不包含在zabbix的发行版本中,你需要额外去下载安装,如果你配置了epel源,如下命令安装:
yum install fping
然后修改zabbix_server.conf,指定fping路径,配置参数为FpingLocation,一般为:
FpingLocation = /usr/bin/fping
如果没有安装fping或者fping路径指定出错,cmpping, icmppingloss,icmppingsec都不会处理,执行fping命令的zabbix用户要设置setuid,毕竟fping命令是需要root权限的。
如下设置:
shell> chown root:zabbix /usr/sbin/fping shell> chmod 4710 /usr/sbin/fping
ICMP检测默认参数:
......