這篇文章帶給大家的內容是關於Python如何實現Zabbix-API監控(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
當運維的朋友應該知道,公司IDC機房常有上架、下架、報修和報廢的伺服器。如果伺服器數量很多的時候很容易造成監控遺漏。
大的互聯網公司把監控系統和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,每台會收到關於那些主機沒有加入監控的資訊。
總結:
1)Zabbix API相關資訊可以查看官方詳細資料。
2)透過這個腳本可以知道那些主機沒有加入監控,希望對大家有幫助。
以上是Python如何實現Zabbix-API監控(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!