Universal API for different monitoring systems
Project description
unimonapi
Universal API for different monitoring systems: use built-in system types or extend with your own.
Currently supported API is Zabbix. But you can extend the package with any monitoring system you want.
Just imagine: universal API for every system!
Getting Started
Installing
To install the package simply run:
pip install unimonapi
Using
The unimonapi CLI is available just after installation:
zabbix_cli.py --help
Or of course you can use the package for coding:
from unimonapi import ZabbixAPI
api = ZabbixAPI('http://zabbix-web', 'Admin', 'zabbix')
for problem in api.get_problems():
print problem
Extending
Extending the package is simple:
import requests
from unimonapi import MonitoringAPI
from unimonapi import Event
class MyMonAPI(MonitoringAPI):
def __init__(self, url):
self.url = url
def get_problems(self, severities=None, groups=None):
problems = []
for p in requests.get(self.url).json():
if severities is None or p['severity'] in severities:
if groups is None or p['group'] in groups:
event = Event(Event.PROBLEM, True, p['severity'], p['host'], p['text'], p['id'])
problems.append(event)
return problems
License
This project is licensed under the MIT License - see the LICENSE file for details
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file unimonapi-0.0.1.tar.gz.
File metadata
- Download URL: unimonapi-0.0.1.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
223bbfdb7faa23d90b4d4fc189e39aae48edc44fe0af88924266beebcc96e8e8
|
|
| MD5 |
0fef62fb015ffa9fb8f7b579e32b4053
|
|
| BLAKE2b-256 |
e9e49ca5a6bd1556b6ac248ac3c5bff8246537a789cda4af9ce2fb8711d71f20
|
File details
Details for the file unimonapi-0.0.1-py2-none-any.whl.
File metadata
- Download URL: unimonapi-0.0.1-py2-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c1c972c478e435e62163e05af7e1b74cba125d2d9cc43eabd3893c6c7874986
|
|
| MD5 |
8f40f8f1b6eb0b4ed2f74bff959d86a4
|
|
| BLAKE2b-256 |
7dff5af83df4a9905ab3eb1ca94820ef6e5ff3d9aa2fbacbb2418441a6db6b30
|