python实现Zabbix-API监控

作者:CTO老王 时间:2022-04-23 17:41:00 

做运维的朋友应该知道,公司IDC机房经常有上架、下架、报修和报废的服务器。如果服务器数量很多的时候很容易造成监控遗漏。

python实现Zabbix-API监控

       大的互联网公司把监控系统和CMDB(资产管理系统|配置管理数据库系统)集成在一起,当上架一台新机器的时候CMDB里面会记录相关的信息,Zabbix根据CMDB里面信息自动Link相关的模块,添加|删除监控。很多小的公司没有资产管理系统,但作为监控的负责人应该每天知道上架了哪些新的机器,确保能添加到Zabbix监控里面。

      首先给大家说一下脚本思路:

1)通过Nmap工具扫描网段,扫描出已经使用的IP地址。
2)通过Nmap检测已经扫描IP的3389或者22端口是否开放,可以判断那些事windows机器,那些是Linux机器。
3)Linux下面通过ssh + hostname命令找出Linux主机名。
4)Windows下面通过nmblookup -A 命令找出Windows主机名。
5)用Python脚本读扫描结果文件,把主机名写到列表里面。
6)用Zabbix python API 调用已经监控的主机名,写到列表里面。
7)两个列表取交集,用for循环判断哪些主机名没有监控。
8)发邮件通知监控负责人。

    下面我分享一下我写的Python写的脚本,其中scan_machine.sh是我调用的用Shell写的关于Nmap扫描的脚本,scan_hostname.log是Nmap扫描的结果,里面内容是IP 主机名。


#!/usr/bin/env python#create by:sfzhang 20140820#coding=utf-8import os,sysimport jsonimport urllib2import datetime,timefrom urllib2 import URLError
nmap_cmd = "/shell/machine/scan_machine.sh"def runCmd(command):
global mail_cmd
mail_cmd = '''mail -s "Report on not monitor Hosts of Zabbix" shifeng_zhang88 < /shell/machine/result/result.txt'''
return os.system(command)runCmd(nmap_cmd)def nmap_host():
hostiplst = []
hostnamelst = []
f = file('/shell/machine/result/scan_hostname.log')
for line in f.readlines():
 hostip = line.split()[0]
 hostname = line.split()[1]
 hostiplst.append(hostip)
 hostnamelst.append(hostname)
hostnamelst.sort()
#print hostiplst
return hostnamelst
f.close()def zabbix_host():
zabbixhostlst= []
#based url and required header
url = "http://192.168.161.128/api_jsonrpc.php"
header = {"Content-Type": "application/json"}
#request json
data = json.dumps(
{
"jsonrpc": "2.0",
 "method": "host.get",
 "params":{
  "output":["hostid","name"],
  "filter":{"host":""}
},
#auth id
"auth":"Zabbix Auth ID",
"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:
print "The server could not fulfill the request.",e.reason else:
 reponse = json.loads(result.read())
result.close()
#print "Number of Hosts:",len(reponse['result'])
for host in reponse['result']:
  #print "Host ID:",host['hostid'],"Host Name:",host['name']
  zbxhosts=host['name']
  zabbixhostlst.append(zbxhosts)
 zabbixhostlst.sort()
 return zabbixhostlst def main():
nmaphostlst = nmap_host()
zbxhostlst = zabbix_host()
diff = list(set(nmaphostlst) ^ set(zbxhostlst))
content = "\n"
nomonitorlst = []
if len(diff) != 0:
 for host in diff:
  if host in nmaphostlst:
   nomonitorlst.append(host)

else:
 sys.exit()
#print zbxhostlst
string = '\n'.join(nomonitorlst)
f = file('/shell/machine/result/result.txt','w')
f.write(string)
f.flush()
f.close()
runCmd(mail_cmd)if __name__ == "__main__":
main()

把脚本添加到crontab,每台会收到关于那些主机没有添加监控的信息。

python实现Zabbix-API监控

总结:

     1)Zabbix API相关信息可以查看官方详细资料。

     2)通过该脚本可以知道那些主机没有添加监控,希望对大家有帮助,如果有更好的解决方法欢迎多多交流。    

来源:https://www.cnblogs.com/Javame/p/9660253.html

标签:python,Zabbix,API
0
投稿

猜你喜欢

  • sql server中错误日志errorlog的深入讲解

    2024-01-23 11:57:58
  • 在ASP中使用SQL语句之10:视图

    2007-08-11 13:24:00
  • 一小时学会TensorFlow2之大幅提高模型准确率

    2021-07-25 16:25:20
  • 解决python matplotlib imshow无法显示的问题

    2023-07-19 23:59:25
  • 对Python 检查文件名是否规范的实例详解

    2021-11-13 02:04:23
  • 在ASP.NET 2.0中操作数据之五十六:使用ObjectDataSource缓存数据

    2024-05-11 09:26:18
  • 在Mac中PyCharm配置python Anaconda环境过程图解

    2023-10-19 01:22:53
  • Oracle 10G:PL/SQL正规表达式(正则表达式)手册

    2009-07-02 12:33:00
  • 8种常用的Python工具

    2023-03-28 10:49:49
  • python编写暴力破解FTP密码小工具

    2021-11-29 15:32:40
  • Django项目中表的查询的操作

    2023-04-23 10:22:23
  • Python def函数的定义、使用及参数传递实现代码

    2023-02-23 04:54:34
  • python实现基于两张图片生成圆角图标效果的方法

    2023-04-20 17:58:56
  • Array.prototype.concat不是通用方法反驳[译]

    2024-05-25 15:19:13
  • Mysql 数据库死锁过程分析(select for update)

    2024-01-23 02:57:26
  • Python中 join() 函数的使用示例讲解

    2023-03-29 02:32:25
  • Oracle 实现类似SQL Server中自增字段的一个办法

    2009-08-02 07:51:00
  • PHP echo()函数讲解

    2023-06-05 18:50:54
  • Python中处理字符串之islower()方法的使用简介

    2021-03-26 16:40:35
  • MySql模糊查询json关键字检索方案示例

    2024-01-16 13:57:44
  • asp之家 网络编程 m.aspxhome.com