环境:Centos 6.6


Zabbix自动发现WEB站点:

[root@Centos ~]# tail -3 /etc/zabbix/zabbix_agentd.conf
UserParameter=web.site_discovery,/etc/zabbix/scripts/discovery_web_site.sh web_site_discovery
UserParameter=web.site_code[*],/etc/zabbix/scripts/discovery_web_site.sh web_site_code $1
UserParameter=memory.free,free -m|grep Mem |awk '{print $4}'
[root@Centos ~]#
[root@Centos ~]# cat /etc/zabbix/scripts/WEB.txt
www.baidu.com
www.qq.com
www.51cto.com
[root@Centos ~]#
[root@Centos ~]# zabbix_get -s 192.168.31.160 -k web.site_discovery

【8】、Low Level Discovery发现实现实时监控_Level

[root@Centos ~]# zabbix_get -s 192.168.31.160 -k web.site_code[www.baidu.com]
200
[root@Centos ~]#

【8】、Low Level Discovery发现实现实时监控_zabbix_02


创建web_monitor的模版,Configuration---Templates

【8】、Low Level Discovery发现实现实时监控_Level_03

Configuration---Templates(web_status_code_monitor)---discovery---create discovery rule:

【8】、Low Level Discovery发现实现实时监控_zabbix_04【8】、Low Level Discovery发现实现实时监控_Level_05
【8】、Low Level Discovery发现实现实时监控_Level_06

Configuration---Templates(web_status_code_monitor)---discovery(1)---Item prototypes (0)---create item prototype:

【8】、Low Level Discovery发现实现实时监控_Level_07

【8】、Low Level Discovery发现实现实时监控_Low_08

Configuration---Templates(web_status_code_monitor)---discovery(1)---Trigger prototypes (0)---Create Trigger prototype:

【8】、Low Level Discovery发现实现实时监控_Low_09

【8】、Low Level Discovery发现实现实时监控_Level_10

【8】、Low Level Discovery发现实现实时监控_Low_11


Configuration---Templates(web_status_code_monitor)---discovery(1)---Graph prototypes (0)---Create Graph prototype:

【8】、Low Level Discovery发现实现实时监控_zabbix_12

【8】、Low Level Discovery发现实现实时监控_Low_13


Configuration---Host---Zabbix server---Templates---Add:

【8】、Low Level Discovery发现实现实时监控_zabbix_14

Configuration---Host---“Zabbix Server”---Discovery(1):

【8】、Low Level Discovery发现实现实时监控_zabbix_15

【8】、Low Level Discovery发现实现实时监控_zabbix_16

【8】、Low Level Discovery发现实现实时监控_Level_17

【8】、Low Level Discovery发现实现实时监控_Level_18


脚本返回的值必须是json格式的

[root@Centos ~]# cat /etc/zabbix/scripts/discovery_web_site.sh
#######cat /etc/zabbix/scripts/web_site_code_status########
#!/bin/bash
#function:monitor tcp connect status from zabbix
#license:GPL
#version:1.0
source /etc/bashrc > /dev/null 2>&1
source /etc/profile > /dev/null 2>&1
#/usr/bin/curl -o /dev/null -s -w %{http_code} http://$1/
Web_dir="/etc/zabbix/scripts"
WEB_SITE_discovery () {
WEB_SITE=($(cat "$Web_dir"/WEB.txt|grep -v "^#"))
printf '{\n'
printf '\t"data":[\n'
for ((i=0;i<${#WEB_SITE[@]};++i))
{
num=$(echo $((${#WEB_SITE[@]}-1)))
if [ "$i" != "${num}" ];then
printf '\t\t{ \n'
printf "\t\t\t\"{#SITENAME}\":\"${WEB_SITE[$i]}\"},\n"
else
printf '\t\t{ \n'
printf "\t\t\t\"{#SITENAME}\":\"${WEB_SITE[$num]}\"}]}\n"
fi
}
}
WEB_SITE_code () {
/usr/bin/curl -o /dev/null -s -w %{http_code} http://$1
}
case "$1" in
web_site_discovery)
WEB_SITE_discovery;;
web_site_code)
WEB_SITE_code $2;;
*)
echo "Usage:$0 {web_site_discovery|web_site_code URL}";;
esac
[root@Centos ~]#

【8】、Low Level Discovery发现实现实时监控_zabbix_19