Skip to content

gescheit/aiozbx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

aiozbx

Asynchronous API to zabbix.

zabbix sender example

from aiozbx import Sender
import time

sender = Sender("localhost", 10051)
data = [{"host": "testhost",
         "key": "key[param1, param2]",
         "value": "OK",
         "clock": int(time.time()),
         "ns": 0}]

res = await sender.send(data)
print(res)

About

asynchronous API and server client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages