码迷,mamicode.com
首页 > Windows程序 > 详细

3、Zabbix-API使用

时间:2016-06-07 22:32:07      阅读:1019      评论:0      收藏:0      [点我收藏+]

标签:zabbix、api使用

Zabbix提供了API接口和方法,可以利用方法实现创建主机、删除主机、创建宏、创建模板等目的。


下面列举一些实例,看看如何使用Zabbix-API

zabbix官方文档:https://www.zabbix.com/documentation/2.2/ru/start


要使用zabbix的API接口,需要用pip安装zabbix-api模块。所以我们需要先安装pip,再安装zabbix-api模块,而安装pip前需要安装setuptools模块


安装setuptools

下载地址:https://pypi.python.org/pypi?%3Aaction=search&term=setuptools&submit=search

安装:

tar zxf setuptools-19.6.2.tar.gz
cd setuptools-19.6.2
python setup.py install


安装pip

下载地址:https://pypi.python.org/pypi/pip/

安装:

tar zxf pip-8.1.0.tar.gz 
cd pip-8.1.0
python setup.py install


安装Zabbix-API模块

pip install zabbix-api
[root@dnsserver pip-8.1.0]# pip list
DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6
iniparse (0.3.1)
ordereddict (1.2)
pip (8.1.0)
pycurl (7.19.0)
pygpgme (0.1)
setuptools (19.6.2)
urlgrabber (3.9.1)
yum-metadata-parser (1.1.2)
zabbix-api (0.4)
You are using pip version 8.1.0, however version 8.1.2 is available.
You should consider upgrading via the ‘pip install --upgrade pip‘ command.


Zabbix-API使用演示:

host.exists:

官网介绍:

Request:

{
    "jsonrpc": "2.0",
    "method": "host.exists",
    "params": {
        "host": "Zabbix Server",
        "nodeids": [
            "1"
        ]
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1}

Response:

{
    "jsonrpc": "2.0",
    "result": true,
    "id": 1}


如何利用zabbix-api查询某主机是否存在呢?

写一个python脚本,内容如下:

vim host_exists.py

#!/usr/bin/python
#coding:utf-8
from zabbix_api import ZabbixAPI
server = "http://172.16.206.131/zabbix"
username = "Admin"
password = "zabbix"
zapi = ZabbixAPI(server=server, path="", log_level=0)
zapi.login(username, password)
result = zapi.host.exists({"host":"Zabbix server"})
print result


运行脚本,得到结果为

[root@dnsserver scripts]# ./host_exists.py 
True

表示主机存在


Zabbix还提供了很多方法去获取信息,看官网吧。





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

3、Zabbix-API使用

标签:zabbix、api使用

原文地址:http://zengestudy.blog.51cto.com/1702365/1787080

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!