Zabbix的LLD功能--Low-level discovery
感觉这个主题是和一个主题是一个系列,而且更基础。
准备深入研究一下。。。
相关文档准备:
https://www.zabbix.com/documentation/2.0/manual/discovery/low_level_discovery
http://itnihao.blog.51cto.com/1741976/1129725
Low-level discovery provides a way to automatically create items, triggers, and graphs for different entities on a computer. For instance, Zabbix can automatically start monitoring file systems or network interfaces on your machine, without the need to create items for each file system or network interface manually. Additionally it is possible to configure Zabbix to remove unneeded entities automatically based on actual results of periodically performed discovery.
In Zabbix 2.0, three types of item discovery are supported out of the box:
- discovery of file systems;
- discovery of network interfaces;
- discovery of SNMP OIDs.
A user can define their own types of discovery, provided they follow a particular JSON protocol.
The general architecture of the discovery process is as follows.
First, a user creates a discovery rule in “Configuration” → “Templates” → “Discovery” column. A discovery rule consists of (1) an item that discovers the necessary entities (for instance, file systems or network interfaces) and (2) prototypes of items, triggers, and graphs that should be created based on the value of that item.
An item that discovers the necessary entities is like a regular item seen elsewhere: the server asks a Zabbix agent (or whatever the type of the item is set to) for a value of that item, the agent responds with a textual value. The difference is that the value the agent responds with should contain a list of discovered entities in a specific JSON format. While the details of this format are only important for implementers of custom discovery checks, it is necessary to know that the returned value contains a list of macro → value pairs. For instance, item “net.if.discovery” might return two pairs: “{#IFNAME}” → “lo” and “{#IFNAME}” → “eth0”.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
需求:
现在有大量url需要监控,形式如http://itnihao.blog.51cto.com ,要求url状态不为200即报警。
需求详细分析:
大量的url,且url经常变化,现在监控用的是zabbix,如果手动添加模板,会造成大量重复工作,造成人力财力的浪费,造成休息时间的浪费,得不尝失,如果利用脚本+mail,无法图形呈现
解决方案:
zabbix有discovery功能,利用此功能,即可轻松解决此问题
zabbix客户端配置
#########cat /etc/zabbix/zabbix_agentd.conf|grep -v "^#"|grep -v "^$"##########
##此处省略N多信息,
Include=/etc/zabbix/zabbix_agentd.conf.d/ #配置文件路径
UnsafeUserParameters=1 #自定义key
###########自动发现脚本编写
########################cat /etc/zabbix/scripts/web_site_code_status##############
#!/bin/bash
# function:monitor tcp connect status from zabbix
# License: GPL
# mail:itnihao@qq.com
# version:1.0 date:2012-12-09
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_SITE_discovery () {
WEB_SITE=($(cat WEB1.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
客户端配置文件
#########cat /etc/zabbix/zabbix_agentd.conf.d/web_site_discovery.conf ###########
UserParameter=web.site.discovery,/etc/zabbix/scripts/web_site_code_status web_site_discovery
UserParameter=web.site.code[*],/etc/zabbix/scripts/web_site_code_status web_site_code $1
域名如下
######### cat /etc/zabbix/scripts/WEB.txt###########
www.qq.com
www.baidu.com
www.sina.com.cn
测试:
zabbix_get -s 127.0.0.1 -k web.site.discovery

zabbix_get -s 127.0.0.1 -k web.site.code[www.qq.com]
此时返回状态为200
至此,脚本,客户端配置文件OK
接下来是web的添加








报警级别的设置:3个报警级别


利用以上方法,哪怕是1000个url监控,也是分分钟的事情
总结:工欲善其事,必先利其器
参考文档:https://www.zabbix.com/documentation/2.0/manual/discovery/low_level_discovery
此外,还可以参考我写的文档:http://code.google.com/p/auto-task-pe/downloads/list zabbix自动发现监控http端口.pdf 如遇到问题,请先仔细阅读这2个文档,另外附模板文件。
欢迎交流。
http://my.itwnik.com/2013/03/zabbix-low-level-discovery-rule-script-for-md-devices/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
应用一则:
zabbix实现对web的监控有两种方式实现,一种是自带的web scenarios,基本能够实现大部分web监控的需求,但是方便简易性差很多;另一种是利用脚本+lld,可以实现任一机
器上的所有url监控,我们只需手动添加要监控的url,再加上zabbix模版的功能,就能够轻而易举的应用到所需要的监控的服务器上。
首先要感线itnihao童鞋提供的这种方式,博客地址为http://itnihao.blog.51cto.com/1741976/1129725
1.zabbix客户端配置
vim /etc/zabbix/zabbix_agent.conf
Include=/etc/zabbix/zabbix_agentd.conf
UnsafeUserParameters=1
允许用户使用自定义的参数进行传递
2.脚本及参数
[root@localhost zabbix]# tree
.
├── monitor_scripts
│ ├── discovertcpport.sh
│ ├── web_site_code_status.sh
│ └── WEB.txt
├── zabbix_agentd.conf
└── zabbix_agentd.d
├── userparameter_mysql.conf
└── web_site_discovery.conf
(1)zabbix传递参数及配置文件
[root@localhost zabbix]# cat zabbix_agentd.d/web_site_discovery.conf
UserParameter=web.site.discovery,/etc/zabbix/monitor_scripts/web_site_code_status.sh web_site_discovery
UserParameter=web.site.code[*],/etc/zabbix/monitor_scripts/web_site_code_status.sh web_site_code $1
(2)zabbix自动监控脚本
[root@localhost zabbix]# cat monitor_scripts/web_site_code_status.sh
#!/bin/bash
#function:monitor web site code status from zabbix
WEB_SITE_discovery(){
WEB_SITE=($(cat /etc/zabbix/monitor_scripts/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
(3)需要监控的url在WEB.TXT中
[root@localhost zabbix]# cat monitor_scripts/WEB.txt
s1.xd.com/Default.aspx
s2.xd.com/Default.aspx
3.在zabbix服务端进行监控测试
[root@83 yum.repos.d]# /usr/bin/zabbix_get -s 192.168.1.211 -p 10050 -k web.site.code[s1.xd.com/Default.aspx]
200
[root@83 yum.repos.d]# /usr/bin/zabbix_get -s 192.168.1.211 -p 10050 -k web.site.discovery
{
"data":[
{
"{#SITENAME}":"s1.xd.com/Default.aspx"},
{
"{#SITENAME}":"s2.xd.com/Default.aspx"}]}
测试成功
4.下面我们来配置下discovery模版,配好后直接应用到服务器即可。
(1)创建模版,并应用到需要监控的服务器上
(2)在新建的Template Web Monitor模版的Application中创建新应用
(3)在在新建的Template Web Monitor模版的Discovery rules中创建新rule
(4)在新建的web.site.discovery中创建Item porototyoed
(5)在新建的web.site.discovery中创建Trigger porotypes,此处设置为状态码大于399就报警。
ok,配置完后我们的web url监控就完成了
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Zabbix的LLD功能--Low-level discovery的更多相关文章
- Zabbix监控Low level discovery实时监控网站URL状态
今天我们来聊一聊Low level discovery这个功能,我们为什么要用到loe level discovery这个功能呢? 很多时候,在使用zabbix监控一些东西,需要对类似于Itens进行 ...
- zabbix监控redis多实例(low level discovery)
对于多实例部署的tomcat.redis等应用,可以利用zabbix的low level discovery功能来实现监控,减少重复操作. 注:Zabbix版本: Zabbix 3.0.2 一.服务 ...
- zabbix(10)自动发现规则(low level discovery)
1.概念 在配置Iterms的过程中,有时候需要对类似的Iterms进行添加,这些Iterms具有共同的特征,表现为某些特定的参数是变量,而其他设置都是一样的,例如:一个程序有多个端口,而需要对端口配 ...
- zabbix 用 LLD 完全自动化监控 Oracle
文章转载自:http://mp.weixin.qq.com/s?__biz=MzA3MzYwNjQ3NA==&mid=2651296856&idx=1&sn=2bdf78071 ...
- Solr实现Low Level查询解析(QParser)
Solr实现Low Level查询解析(QParser) Solr基于Lucene提供了方便的查询解析和搜索服务器的功能,可以以插件的方式集成,非常容易的扩展我们自己需要的查询解析方式.其中,Solr ...
- zabbix自动发现功能实现批量web url监控
需求: 现在有大量url需要监控,形式如http://www.baidu.com ,要求url状态不为200即报警. 需求详细分析: 大量的url,且url经常变化,现在监控用的是zabbix,如果手 ...
- 使用Java Low Level REST Client操作elasticsearch
Java REST客户端有两种风格: Java低级别REST客户端(Java Low Level REST Client,以后都简称低级客户端算了,难得码字):Elasticsearch的官方low- ...
- C++ Low level performance optimize 2
C++ Low level performance optimize 2 上一篇 文章讨论了一些底层代码的优化技巧,本文继续讨论一些相关的内容. 首先,上一篇文章讨论cache missing的重要性 ...
- C++ Low level performance optimize
C++ Low level performance optimize 1. May I have 1 bit ? 下面两段代码,哪一个占用空间更少,那个速度更快?思考10秒再继续往下看:) //v1 ...
随机推荐
- 【IBM】Merlin 给 Java 平台带来了非阻塞 I/O
Merlin 给 Java 平台带来了非阻塞 I/O 新增的功能大幅降低了线程开销 Java 技术平台早就应该提供非阻塞 I/O 机制了.幸运的是,Merlin(JDK 1.4)有一根几乎在各个场合都 ...
- AIX系统上压缩与解压文件
压缩. 命令格式: #tar -cvf (或xvf)+文件名+设备 C:是本地到其他设备 x:是其他设备到本地 r:是追加,比如打包时,将其他文件追加进来使用该参数. t:显示tar包里的内容,但还原 ...
- Socket.IO 概述
为了防止无良网站的爬虫抓取文章,特此标识,转载请注明文章出处.LaplaceDemon/SJQ. http://www.cnblogs.com/shijiaqi1066/p/3826251.html ...
- C# Socket通信 小案例
本文将编写2个控制台应用程序,一个是服务器端(server),一个是客户端(client), 通过server的监听,有新的client连接后,接收client发出的信息. server代码如下: u ...
- 使用PHP实现蜘蛛访问日志统计
$useragent = addslashes(strtolower($_SERVER['HTTP_USER_AGENT'])); if (strpos($useragent, 'googlebot' ...
- ST3破解命令
open terminal and input it! printf '\x39' | dd seek=$((0x6f35)) conv=notrunc bs=1 of=/Applicatio ...
- Xcode7插件开发:从开发到拉到恶魔岛
Xcode很强大,但是有些封闭,官方并没有提供Xcode插件开发的文档.喵神的教程比较全,也比较适合入门.本文的教程只是作为我在开发FKConsole的过程中的总结,并不会很全面. FKConsole ...
- javascript的选项卡
主要用的索引值 首先 写三个按钮 <input type="button" > <input type="button" > <i ...
- Linux命令:tail命令详解
概述:tail命令显示文件末尾区块,也可以查看线上日志 1.格式 tail [参数][文件] 2.参数 -f 循环读取 -q 不显示处理信息 -v 显示详细的处理信息 -c<数目> 显示的 ...
- hdoj 2601(判断N=i*j+i+j)
Problem E Time Limit : 6000/3000ms (Java/Other) Memory Limit : 32768/32768K (Java/Other) Total Sub ...