近日公司准备自已做一个运维管理平台,其中的监控部分,打算调用zabbix api接口来进行展示。

经过思考之后,计划获取如下内容:

1、  获得认证密钥

2、  获取zabbix所有的主机组

3、  获取单个组下的所有主机

4、  获取某个主机下的所有监控项

5、  获取某个监控项的历史数据

6、  获取某个监控项的最新数据

计划最后展示框架如下内容(这只是值方面,其它的会再加):

主机组1 ----主机名1---监控项1----当前值

---监控项2----当前值

----主机名2----监控项1----当前值

----监控项2----当前值

主机组2 ----主机名3---监控项1----当前值

---监控项2----当前值

----主机名4----监控项1----当前值

----监控项2----当前值

进入正题

1.     user.login方法获取zabbix server的认证结果

官方地址:https://www.zabbix.com/documentation/2.2/manual/api/reference/user/login

python脚本:

[root@yang python]# cat auth.py
#!/usr/bin/env python2.7
#coding=utf-8
import json
import urllib2
# based url and required header
url = "http://1.1.1.1/zabbix/api_jsonrpc.php"
header = {"Content-Type":"application/json"}
# auth user and password
data = json.dumps(
{"jsonrpc": "2.0","method": "user.login","params": {"user": "Admin","password": "zabbix"
},
"id": 0
})
# create request object
request = urllib2.Request(url,data)
for key in header:request.add_header(key,header[key])
# auth and get authid
try:result = urllib2.urlopen(request)
except URLError as e:print "Auth Failed, Please Check Your Name AndPassword:",e.code
else:response = json.loads(result.read())result.close()
print"Auth Successful. The Auth ID Is:",response['result']

python脚本运行结果:

[root@yang python]# python auth.py
Auth Successful. The Auth ID Is: a0b82aae0842c2041386a61945af1180

curl命令:

curl -i -X POST -H 'Content-Type:application/json' -d '{"jsonrpc":
"2.0","method":"user.login","params":{"user":"admin","password":"zabbix"},"auth":
null,"id":0}' http://1.1.1.1/zabbix/api_jsonrpc.php

curl命令运行结果:

{"jsonrpc":"2.0","result":"b895ce91ba84fe247e444817c6773cc3","id":0}

2.     hostgroup.get方法获取所有主机组ID

把认证密钥放到脚本中,每次获取数据时都需要认证。此处是获取zabbix server上的所有主机组名称与ID号。

官方地址:https://www.zabbix.com/documentation/2.2/manual/api/reference/hostgroup/get

python脚本:

[root@yang python]# catget_hostgroup_list.py
#!/usr/bin/env python2.7
#coding=utf-8
import json
import urllib2
# based url and required header
url = "http://1.1.1.1/zabbix/api_jsonrpc.php"
header = {"Content-Type":"application/json"}
# request json
data = json.dumps(
{"jsonrpc":"2.0","method":"hostgroup.get","params":{"output":["groupid","name"],},"auth":"3c0e88885a8cf8af9502b5c850b992bd", # theauth id is what auth script returns, remeber it is string"id":1,
})
# create request object
request = urllib2.Request(url,data)
for key in header:request.add_header(key,header[key])
# get host list
try:result = urllib2.urlopen(request)
except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.code
else:response = json.loads(result.read())result.close()print "Number Of Hosts: ", len(response['result'])#print responsefor group in response['result']:print "Group ID:",group['groupid'],"\tGroupName:",group['name']

python脚本执行结果:

[root@yang python]# pythonget_hostgroup_list.py
Number Of Hosts:  12
Group ID: 11    Group Name: DB Schedule
Group ID: 14    Group Name: DG-WY-KD-Server
Group ID: 5     Group Name: Discovered hosts
Group ID: 7     Group Name: Hypervisors
Group ID: 2     Group Name: Linux servers
Group ID: 8     Group Name: monitored_linux
Group ID: 9     Group Name: qsmind
Group ID: 12    Group Name: qssec
Group ID: 13    Group Name: switch
Group ID: 1     Group Name: Templates
Group ID: 6     Group Name: Virtual machines
Group ID: 4     Group Name: Zabbix servers

curl命令:

curl -i -X POST -H 'Content-Type:application/json' -d '{"jsonrpc": "2.0","method":"hostgroup.get","params":{"output":["groupid","name"]},"auth":"11d2b45415d5de6770ce196879dbfcf1","id": 0}' http://1.1.1.1/zabbix/api_jsonrpc.php

curl执行结果:

{"jsonrpc":"2.0","result":[{"groupid":"11","name":"DBSchedule"},{"groupid":"14","name":"DG-WY-KD-Server"},{"groupid":"5","name":"Discoveredhosts"},{"groupid":"7","name":"Hypervisors"},{"groupid":"2","name":"Linuxservers"},{"groupid":"8","name":"monitored_linux"},{"groupid":"9","name":"qsmind"},{"groupid":"12","name":"qssec"},{"groupid":"13","name":"switch"},{"groupid":"1","name":"Templates"},{"groupid":"6","name":"Virtualmachines"},{"groupid":"4","name":"Zabbixservers"}],"id":0}

3.     host.get方法获取单个主机组下所有的主机ID。

根据标题2中获取到的主机组id,把主机组id填入到下边脚本中,就可以获得该主机组下所有的主机id。

官方地址:https://www.zabbix.com/documentation/2.2/manual/api/reference/host/get

python脚本:

[root@yang python]# cat get_group_one.py
#!/usr/bin/env python2.7
#coding=utf-8
import json
import urllib2
# based url and required header
url = "http://1.1.1.1/zabbix/api_jsonrpc.php"
header = {"Content-Type":"application/json"}
# request json
data = json.dumps(
{"jsonrpc":"2.0","method":"host.get","params":{"output":["hostid","name"],"groupids":"14",},"auth":"3c0e88885a8cf8af9502b5c850b992bd", # theauth id is what auth script returns, remeber it is string"id":1,
})
# create request object
request = urllib2.Request(url,data)
for key in header:request.add_header(key,header[key])
# get host list
try:result = urllib2.urlopen(request)
except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.code
else:response = json.loads(result.read())result.close()print "Number Of Hosts: ", len(response['result'])for host in response['result']:print "Host ID:",host['hostid'],"HostName:",host['name']

python脚本执行结果:

[root@yang python]# pythonget_group_one.py
Number Of Hosts:  4
Host ID: 10146 Host Name: DG-WY-KD-3F3B-00
Host ID: 10147 Host Name: DG-WY-KD-3F3B-01
Host ID: 10148 Host Name: DG-WY-KD-3F3B-02
Host ID: 10149 Host Name: DG-WY-KD-3F3B-03

curl命令:

curl -i -X POST -H'Content-Type: application/json' -d '{"jsonrpc":"2.0","method":"host.get","params":{"output":["hostid","name"],"groupids":"14"},"auth":"11d2b45415d5de6770ce196879dbfcf1","id": 0}'
http://1.1.1.1/zabbix/api_jsonrpc.php

curl命令执行结果:

{"jsonrpc":"2.0","result":[{"hostid":"10146","name":"DG-WY-KD-3F3B-00"},{"hostid":"10147","name":"DG-WY-KD-3F3B-01"},{"hostid":"10148","name":"DG-WY-KD-3F3B-02"},{"hostid":"10149","name":"DG-WY-KD-3F3B-03"}],"id":0}

4.     itemsid.get方法获取单个主机下所有的监控项ID

根据标题3中获取到的所有主机id与名称,找到你想要获取的主机id,获取它下面的所有items。

官方地址:https://www.zabbix.com/documentation/2.2/manual/api/reference/item

python脚本:

[root@yang python]# cat get_items.py
#!/usr/bin/env python2.7
#coding=utf-8
import json
import urllib2
# based url and required header
url = "http://1.1.1.1/zabbix/api_jsonrpc.php"
header = {"Content-Type":"application/json"}
# request json
data = json.dumps(
{"jsonrpc":"2.0","method":"item.get","params":{"output":["itemids","key_"],"hostids":"10146",},"auth":"3c0e88885a8cf8af9502b5c850b992bd", # theauth id is what auth script returns, remeber it is string"id":1,
})
# create request object
request = urllib2.Request(url,data)
for key in header:request.add_header(key,header[key])
# get host list
try:result = urllib2.urlopen(request)
except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.code
else:response = json.loads(result.read())result.close()print "Number Of Hosts: ", len(response['result'])for host in response['result']:print host#print "Host ID:",host['hostid'],"HostName:",host['name']

python脚本运行结果:

[root@yang python]# python get_items.py
Number Of Hosts:  54
{u'itemid': u'24986', u'key_':u'agent.hostname'}
{u'itemid': u'24987', u'key_':u'agent.ping'}
{u'itemid': u'24988', u'key_':u'agent.version'}
{u'itemid': u'24989', u'key_':u'kernel.maxfiles'}
{u'itemid': u'24990', u'key_':u'kernel.maxproc'}
{u'itemid': u'25157', u'key_':u'net.if.in[eth0]'}
{u'itemid': u'25158', u'key_':u'net.if.in[eth1]'}
… …

curl命令:

curl -i -X POST -H 'Content-Type:application/json' -d '{"jsonrpc":"2.0","method":"item.get","params":{"output":"itemids","hostids":"10146","search":{"key_":"net.if.out[eth2]"}},"auth":"11d2b45415d5de6770ce196879dbfcf1","id": 0}' http://1.1.1.1/zabbix/api_jsonrpc.php
#此处加上了单个key的名称

curl命令执行结果:

{"jsonrpc":"2.0","result":[{"itemid":"25154"}],"id":0}

5.     history.get方法获取单个监控项的历史数据

根据第4项的获取到的所有items id的值,找到想要监控的那项,获取它的历史数据。

官方地址:https://www.zabbix.com/documentation/2.2/manual/api/reference/history/get

python脚本:

[root@yang python]# catget_items_history.py
#!/usr/bin/env python2.7
#coding=utf-8
import json
import urllib2
# based url and required header
url = "http://1.1.1.1/zabbix/api_jsonrpc.php"
header = {"Content-Type":"application/json"}
# request json
data = json.dumps(
{"jsonrpc":"2.0","method":"history.get","params":{"output":"extend","history":3,"itemids":"25159","limit":10},"auth":"3c0e88885a8cf8af9502b5c850b992bd", # theauth id is what auth script returns, remeber it is string"id":1,
})
# create request object
request = urllib2.Request(url,data)
for key in header:request.add_header(key,header[key])
# get host list
try:result = urllib2.urlopen(request)
except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.code
else:response = json.loads(result.read())result.close()print "Number Of Hosts: ", len(response['result'])for host in response['result']:print host#print "Host ID:",host['hostid'],"HostName:",host['name']

python脚本执行结果:

[root@yang python]# pythonget_items_history.py
Number Of Hosts:  10
{u'itemid': u'25159', u'ns': u'420722133',u'value': u'3008', u'clock': u'1410744079'}
{u'itemid': u'25159', u'ns': u'480606614',u'value': u'5720', u'clock': u'1410744139'}
{u'itemid': u'25159', u'ns': u'40905600',u'value': u'6144', u'clock': u'1410744200'}
{u'itemid': u'25159', u'ns': u'175337062',u'value': u'2960', u'clock': u'1410744259'}
{u'itemid': u'25159', u'ns': u'202705084',u'value': u'3032', u'clock': u'1410744319'}
{u'itemid': u'25159', u'ns': u'263158421',u'value': u'2864', u'clock': u'1410744379'}
{u'itemid': u'25159', u'ns': u'702285081',u'value': u'7600', u'clock': u'1410744439'}
{u'itemid': u'25159', u'ns': u'231191890',u'value': u'3864', u'clock': u'1410744499'}
{u'itemid': u'25159', u'ns': u'468566742',u'value': u'3112', u'clock': u'1410744559'}
{u'itemid': u'25159', u'ns': u'421679098',u'value': u'2952', u'clock': u'1410744619'}

curl命令:

curl -i -X POST -H 'Content-Type:application/json' -d '{"jsonrpc":"2.0","method":"history.get","params":{"history":3,"itemids":"25154","output":"extend","limit":10},"auth":"11d2b45415d5de6770ce196879dbfcf1","id": 0}' http://1.1.1.1/zabbix/api_jsonrpc.php

curl命令运行结果:

{"jsonrpc":"2.0","result":[{"itemid":"25154","clock":"1410744134","value":"4840","ns":"375754276"},{"itemid":"25154","clock":"1410744314","value":"5408","ns":"839852515"},{"itemid":"25154","clock":"1410744374","value":"7040","ns":"964558609"},{"itemid":"25154","clock":"1410744554","value":"4072","ns":"943177771"},{"itemid":"25154","clock":"1410744614","value":"8696","ns":"995289716"},{"itemid":"25154","clock":"1410744674","value":"6144","ns":"992462863"},{"itemid":"25154","clock":"1410744734","value":"6472","ns":"152634327"},{"itemid":"25154","clock":"1410744794","value":"4312","ns":"479599424"},{"itemid":"25154","clock":"1410744854","value":"4456","ns":"263314898"},{"itemid":"25154","clock":"1410744914","value":"8656","ns":"840460009"}],"id":0}

6.     history.get方法获取单个监控项最后的值

只需把上个脚本中或curl中的limit参数改为1就可。

此时监控项的数据已拿到了,接下来的把它传给前台展示就行了。

python调用zabbix api接口实时展示数据相关推荐

  1. 树莓派+python flask 调用天气api接口实现天气数据web

    *注:树莓派我用的是在Win10上面的虚拟机镜像 * 文章目录 前言 一.flask是什么? 二.使用步骤 1.引入库 2.写一个简单的flask 3.实验准备 4.实验开始 5.结尾调试 总结 前言 ...

  2. python调用api做用户登录认证_(二)Python调用Zabbix api之从入门到放弃——登录并获取身份验证令牌...

    x.x.x.x可能是你的IP或者域名 访问流程概览: 1.首先登录 2.认证成功后zabbix server返回一个token 3.带着这个token去访问各种数据,做各种操作 4.完毕! 一.用RE ...

  3. python调用百度api接口_python调用百度API

    标签: from urllib.request import urlopen import requests import json url = "http://apis.baidu.com ...

  4. Python 调用 HTTP API 接口模板

    搜索引擎上搜索的模板格式或者是代码风格大多鱼龙混杂,因此自己写一个保存以待后用 #!/usr/bin/env python # -*- coding:utf-8 -*- #@Time : 2021/8 ...

  5. python调用lib_基于python调用libvirt API

    基于python调用libvirt API 1.程序代码 #!/usr/bin/python import libvirt import sys def createConnection(): con ...

  6. python rest api_Python调用REST API接口的几种方式汇总

    相信做过自动化运维的同学都用过REST API接口来完成某些动作.API是一套成熟系统所必需的接口,可以被其他系统或脚本来调用,这也是自动化运维的必修课. 本文主要介绍python中调用REST AP ...

  7. Python使用pyzabbix调用Zabbix API

    Python使用pyzabbix调用Zabbix API Zabbix是一个开源的提供分布式系统监视以及网络监视功能的解决方案. Zabbix能监视各种网络参数,监控服务器系统的安全运营状况,并提供灵 ...

  8. 使用Python调用Flickr API抓取图片数据

    Flickr是雅虎旗下的图片分享网站,上面有全世界网友分享的大量精彩图片,被认为是专业的图片网站.其API也很友好,可以实现多种功能.这里我使用了Python调用其API获得了大量的照片数据.需要注意 ...

  9. python 图表_Python入门学习系列——使用Python调用Web API实现图表统计

    使用Python调用Web API实现图表统计 Web API:Web应用编程接口,用于URL请求特定信息的程序交互,请求的数据大多以非常易于处理的格式返回,比如JSON或CSV等. 本文将使用Pyt ...

最新文章

  1. 分享5个冷门而超级实用的在线网站,大家赶紧来看看吧!
  2. 【程序员】保持一颗虚心好学的心态去敲代码
  3. 如何做嵌入式人工智能
  4. 【分布式事务系列二】Spring事务管理器PlatformTransactionManager
  5. 程序员兼职年收入一百万100w
  6. VBScript: Windows脚本宿主介绍
  7. 手机号归属地区编码_关于手机号码的详细解析~
  8. 办公小技巧:excel列宽在哪里设置
  9. git is outside repository
  10. HTML-文本格式化
  11. 屏幕色彩(一)-已知混色光色点求配色比
  12. 福玛特机器人怎么开机_五一解放双手的选择 福玛特扫地机器人解救你
  13. 瑞吉外卖第五天(套餐的增删改和手机端登录功能的实现)
  14. JQuery关于使用jsp:include标签需要注意的事
  15. python sdklive2d_Unity使用Live2DSDK制作游戏(Demo制作1)
  16. 计算机操作系统学习之吸烟者问题
  17. vue开发环境跨域与生产环境跨域
  18. python龙虎榜数据_GitHub - TR678/stock: stock,股票系统。使用python进行开发。
  19. Zoom会议系统曝出高危漏洞,或影响400万电脑摄像头
  20. 【Linux 中文man帮助】

热门文章

  1. 微信公众平台关于fakeid和openid的解析
  2. 71《SQL学习指南(第二版)》mysql 的数据类型和范围
  3. 大数据处理框架之Strom:Storm集群环境搭建
  4. 一种解决hadoop搭建出现的各种问题的简单粗暴的办法
  5. python版本与编码的区别
  6. 为什么用IP无法访问网站,域名可以访问?
  7. EeePC1000hg安装archlinux20121201和openbox
  8. 正则表达式判断号码靓号类型
  9. Vue:利用Vue生成的网页,在浏览器中的标签页中的图标与标题怎么修改为自己的?
  10. springmvc的工作原理_SpringMVC工作原理