您好,登錄后才能下訂單哦!
小編給大家分享一下如何使用zabbix api批量添加數百臺監控主機,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
在公司規模很龐大的時候,每次都手動添加監控主機將會很麻煩,我們可以利用zabbix的api去批量添加監控主機
本次我們將實現用一臺主機虛擬出100臺主機,并通過api的方式自動添加監控主機
掌握本次方法,無需要了解python,也不需要寫python腳本
可以從官網取到
https://www.zabbix.com/documentation/4.0/zh/manual/api/reference/host/create
{ "jsonrpc": "2.0", "method": "host.create", "params": { "host": "192.168.81.180", "interfaces": [ { "type": 1, "main": 1, "useip": 1, "ip": "192.168.81.180", "dns": "", "port": "10050" } ], "groups": [ { "groupid": "15" } ], "templates": [ { "templateid": "10271" } ] }, "auth": "'$token'", "id": 1 }
api必要字段說明
解釋:
“host”: “192.168.81.160”, #主機名稱
“interfaces”: [
{
“type”: 1, #使用agent客戶端
“main”: 1, #默認
“useip”: 1, #ip地址
“ip”: “192.168.81.160”, #agent的地址
“dns”: “”,
“port”: “10050” #agent端口
}
],
“groups”: [
{
“groupid”: “15” #主機群組的id
}
],
“templates”: [
{
“templateid”: “10271” #模板id
}
]
我們雖然沒有一百臺服務器,但是我們可以創建100個網卡,且都在一臺機器上,有一百個ip即可
[root@k8s-master ~]# for i in {100..200} do ifconfig ens33:$i 192.168.81.$i ifconfig ens33 up done
[root@k8s-master ~]# echo 192.168.81.{100..200} | xargs -n1 > /root/host.txt
[root@k8s-master ~]# yum -y install zabbix-agent [root@k8s-master ~]# vim /etc/zabbix/zabbix_agentd.conf Server=192.168.81.250 [root@k8s-master ~]# systemctl restart zabbix-agent
[root@k8s-master ~]# vim zabbix_host_creates.sh #!/bin/bash #批量添加zabbix主機 #登陸 token=`echo $json | grep result | awk -F'"' '{print $10}'` #批量添加主機 for ip in `cat /root/host.txt` do curl -s -X POST -H 'Content-Type: application/json' -d ' { "jsonrpc": "2.0", "method": "host.create", "params": { "host": "'$ip'", "interfaces": [ { "type": 1, "main": 1, "useip": 1, "ip": "'$ip'", "dns": "", "port": "10050" } ], "groups": [ { "groupid": "15" } ], "templates": [ { "templateid": "10271" } ] }, "auth": "'$token'", "id": 1 }' http://192.168.81.250/zabbix/api_jsonrpc.php | python -m json.tool done
[root@k8s-master ~]# chmod a+x zabbix_host_creates.sh [root@k8s-master ~]# sh zabbix_host_creates.sh
腳本輸出
全部為有效狀態
看完了這篇文章,相信你對“如何使用zabbix api批量添加數百臺監控主機”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。