通过Zabbix API 为主机添加监控模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Zabbix API 为主机添加监控模板相关的知识,希望对你有一定的参考价值。

脚本内容如下;

#!/usr/bin/python
#-*- coding:utf8 -*-
import json,sys,argparse
from zabbix_api import ZabbixAPI
server = "http://172.16.206.128/zabbix"
username = "Admin"
password = "zabbix"
zapi = ZabbixAPI(server=server, path="", log_level=0)
zapi.login(username, password)

def get_args():
    parser = argparse.ArgumentParser()
    parser.add_argument("-H", "--host", help="host name")
    parser.add_argument("-t", "--templates", help="template name")
    # 解析所传入的参数
    args = parser.parse_args()
    if not args.host:
        args.host = raw_input(‘host: ‘)
    if not args.templates:
        args.templates = raw_input(‘templates: ‘)
    return args

def get_host_id(host):
    get_host_id = zapi.host.get(
        {
            "output": "hostid",
            "filter": {
                "host":host.split(",")
            }
        }
)
    host_id = []
    host_id.append([I[‘hostid‘] for I in get_host_id])
    return host_id[0]
def get_templates_id(templates):
    templates_id = zapi.template.get(
    {
        "output": "templateid",
        "filter": {
            "host":templates.split(",")
        }
    }
)
    return templates_id
    
def template_massadd(template_id,host_id):
     template_add = zapi.template.massadd(
        {
            "templates": template_id,
            "hosts": host_id
            }
)
     return "host add template success"
     
if __name__ == "__main__":
    args = get_args()
    host_id = get_host_id(args.host)
    template_id = get_templates_id(args.templates)
    if len(host_id) == len(args.host.split(‘,‘)):
        if len(template_id) == len(args.templates.split(‘,‘)):
            print template_massadd(template_id,host_id)
        else:
            print "template not exist"
    else:
        print "host not exist"

脚本需要传递两个参数:host(主机名)和templates(模板名称),主机可以为多个,用逗号“,”隔开,模板也可以为多个,同样用逗号“,”隔开。


用法:

python template_massadd.py --host="abc,client" --"templates"="Template OS Linux,Templates App mysql"
host add template success



本文出自 “zengestudy” 博客,请务必保留此出处http://zengestudy.blog.51cto.com/1702365/1853581

以上是关于通过Zabbix API 为主机添加监控模板的主要内容,如果未能解决你的问题,请参考以下文章

通过API自动增加Zabbix监控主机

zabbix监控添加主机,添加模板,处理图形中的乱码,自动发现

zabbix服务器添加监控主机,使用监控模板及自定义监控项

zabbix主动模式与被动模式添加监控主机添加自定义模板

通过python封装zabbix-api批量添加监控项

37-Zabbix自定义监控模板及告警设置