除了上一篇使用自己定义的函数,我们还可使用pipy提供的zabbix_client模块,这样就不用我们自己去写登录函数,只要在模块开始指定用户名密码即可,方便很多。

#!/usr/bin/env python
# Version = 3.5.2
# __auth__ = '无名小妖'
import time
from zabbix_client import ZabbixServerProxy ZABBIX_URL = 'http://alyz.zabbix.com'
ZABBIX_USERNAME = "Admin"
ZABBIX_PASSWORD = "zabbix" class Zabbix: def __init__(self):
self.zb = ZabbixServerProxy(ZABBIX_URL)
self.zb.user.login(user=ZABBIX_USERNAME, password=ZABBIX_PASSWORD) def get_hostgroup(self):
"""
查询组所有组获取组id和name
:return: groupid和name
"""
data = {
"output": ['groupid', 'name'] # "output": "extend", 查看所有字段
}
ret = self.zb.hostgroup.get(**data)
return ret def get_hostid(self, groupids=None):
"""
通过组id获取相关组内的所有主机
:param groupids: None表示获取所有组的主机,可以通过列表,元组等传入多个组id
:return: "hostid"和"name"
"""
data = {
"output": ["hostid", "name"],
"groupids": groupids
}
ret = self.zb.host.get(**data)
return ret def item_get(self, hostids=None):
"""
通过获取的hostid查找相关监控想itemid
:param hostids: None表示获取所有主机的item,可以通过列表,元组等传入多个itemid
:return: "itemids", "key_"
"""
data = {
"output": ["itemids", "key_"],
"hostids": hostids,
} ret = self.zb.item.get(**data)
return ret def history_get(self, itemid, i, limit=10):
"""
通过itemid 获取相关监控项的历史数据
:param itemid:
:param i: 0 - numeric float; 1 - character; 2 - log; 3 - numeric unsigned; 4 - text.
:param limit: 获取数据的数量
:return:
"""
data = {"output": "extend",
"history": i,
"itemids": [itemid],
"limit": limit
}
ret = self.zb.history.get(**data)
return ret def add_zabbix_host(self, hostname="test_zabbix", ip="192.168.10.100", groupid="2"):
"""
添加主机并且指定到组(传入主机名,IP地址和组ID)
:param hostname:
:param ip:
:param groupid:
:return:
"""
data = {
"host": hostname,
"interfaces": [
{
"type": 1,
"main": 1,
"useip": 1,
"ip": ip,
"dns": "",
"port": "10050"
}
],
"groups": [
{
"groupid": groupid
}
]
}
ret = self.zb.host.create(data)
return ret def get_template(self):
"""
查看现有模板
:return:
"""
datalist = []
datadict = {}
data = {
"output": ["templateid", "name"]
}
ret = self.zb.template.get(data)
for i in ret:
datadict[i['name']] = i['templateid']
datalist.append(datadict)
return datalist def link_template(self, hostid=10156, templateids=10001):
"""
关联主机到模板
:param hostid:
:param templateids:
:return:
"""
data = {
"hostid": hostid,
"templates": templateids
} ret = self.zb.host.update(data)
return ret def create_maintenance(self, name="test", hostids=10156, time=2):
"""
添加维护周期
:param name:
:param hostids:
:param time:
:return:
"""
data = {
"name": name,
"active_since": 1458142800,
"active_till": 1489678800,
"hostids": [
hostids
],
"timeperiods": [
{
"timeperiod_type": 0,
"period": 3600
}
]
}
ret = self.zb.maintenance.create(data)
self.host_status(10130, 1)
return ret def get_maintenance(self):
"""
获取维护周期
:return:
"""
data = {
"output": "extend",
"selectGroups": "extend",
"selectTimeperiods": "extend"
}
ret = self.zb.maintenance.get(data)
return ret
#
# def del_maintenance(self, maintenanceids):
# """
# 获取维护周期之后,通过传入maintenanceid删除维护周期
# :param maintenanceids:
# :return:
# """
# return self.zb.maintenance.delete(maintenanceids) def host_status(self, hostid, status):
"""
添加维护周期时候需要吧zabbix_host设置成非监控状态
:param hostid:
:param status:
:return:
"""
data = {
"hostid": hostid,
"status": status
}
return self.zb.host.update(data) # def host_del(self, hostids=10155):
# """
# 通过hostids删除主机id,顺带也删除模板
# :param hostids:
# :return:
# """
# return self.zb.host.delete(hostids) if __name__ == "__main__":
zabbix_server = Zabbix()
print(zabbix_server.get_hostgroup())
print(zabbix_server.get_hostid([2, 1]))
print(zabbix_server.item_get())
# data = zabbix_server.history_get("24889",0)
# print(zabbix_server.add_zabbix_host())
print(zabbix_server.get_template())
# print(data[0]['Template OS Linux'])
# print(zabbix_server.link_template())
# print(zabbix_server.create_maintenance())
# print(zabbix_server.host_del(10155))
# print(zabbix_server.get_maintenance())
# print(zabbix_server.del_maintenance(15)))

  

python3 使用 zabbix_client模块的更多相关文章

  1. Python3之turtle模块的使用

    Python3之turtle模块的使用     直接扣代码就行: import turtle as t t.pensize(4) t.hideturtle() t.colormode(255) t.c ...

  2. python基础系列教程——Python3.x标准模块库目录

    python基础系列教程——Python3.x标准模块库目录 文本 string:通用字符串操作 re:正则表达式操作 difflib:差异计算工具 textwrap:文本填充 unicodedata ...

  3. Python3:Requests模块的异常值处理

    Python3:Requests模块的异常值处理 用Python的requests模块进行爬虫时,一个简单高效的模块就是requests模块,利用get()或者post()函数,发送请求. 但是在真正 ...

  4. Python3中正则模块re.compile、re.match及re.search函数用法详解

    Python3中正则模块re.compile.re.match及re.search函数用法 re模块 re.compile.re.match. re.search 正则匹配的时候,第一个字符是 r,表 ...

  5. Python3安装Celery模块后执行Celery命令报错

    1 Python3安装Celery模块后执行Celery命令报错 pip3 install celery # 安装正常,但是执行celery 命令的时候提示没有_ssl模块什么的 手动在Python解 ...

  6. Python3之configparser模块

    1. 简介 configparser用于配置文件解析,可以解析特定格式的配置文件,多数此类配置文件名格式为XXX.ini,例如mysql的配置文件.在python3.X中 模块名为configpars ...

  7. python3.7 os模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 os模块 #os模块是与操作系统交互的一个接口 # os.get ...

  8. python3.7 json模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 json模块 ''' 要在不同的编程语言之间传递对象,就必须把对 ...

  9. python3.7 random模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 random模块 import random #随机模块 # r ...

随机推荐

  1. ABP框架 - 缓存( 转)

    出处:http://www.cnblogs.com/kid1412/p/5987083.html 文档目录 本节内容: 简介 ICacheManager ICache ITypedCache 配置 实 ...

  2. android 蓝牙通讯编程 备忘

    1.启动App后: 判断->蓝牙是否打开(所有功能必须在打牙打开的情况下才能用) 已打开: 启动代码中的蓝牙通讯Service 未打开: 发布 打开蓝牙意图(系统),根据Activity返回进场 ...

  3. C++动态分配内存(new)和撤销内存(delete)

    在软件开发过程中,常常需要动态地分配和撤销内存空间,例如对动态链表中结点的插入与删除.在C语言中是利用库函数malloc和free来分配和撤销内存空间的.C++提供了较简便而功能较强的运算符new和d ...

  4. 手动安装jar到maven

    mvn install:install-file -DgroupId=com.chinacloud.mir.common -DartifactId=one-aa-sdk -Dversion=1.0-S ...

  5. Java生成HTML文件

    实例HTML文件<html> <head> <title>###title###</title> <meta http-equiv="C ...

  6. 学习前端的菜鸡对JS的call,apply,bind的通俗易懂理解

       call,apply,bind 在JavaScript中,call.apply和bind是Function对象自带的三个方法,都是为了改变函数体内部 this 的指向.            a ...

  7. AE和Mocha结合做视频后期制作

    AE:After Effects Mocha:视频图像追踪软件 智能抠像 前提:安装QuickTime视频编码器!4.1版,不然视频无法预览播放 >>关于AE CC自带的mocha 插件和 ...

  8. (网络流) Island Transport --Hdu -- 4280

    链接: http://acm.hdu.edu.cn/showproblem.php?pid=4280 源点是West, 汇点是East, 用Dinic带入求就好了 代码:要用c++提交 #pragma ...

  9. vc创建模态和非模态对话框

    模态对话框的创建 创建模态对话框需要调用CDialog类的成员函数:DoModal,该函数的功能就是创建并显示一个模 态对话框,关闭模态对话框的函数是EndDialog,该函数需要一个参数,这个参数就 ...

  10. POJ3273 Monthly Expense 2017-05-11 18:02 30人阅读 评论(0) 收藏

    Monthly Expense Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 25959   Accepted: 10021 ...