python-zabbix-utils icon indicating copy to clipboard operation
python-zabbix-utils copied to clipboard

Python library "zabbix-utils"

Results 14 python-zabbix-utils issues
Sort by recently updated
recently updated
newest added

For example, the interfaces field is a good example (on the host.create() API): ` interface = [ { "type": 1, # 1 is 'agent', 2 is 'SNMP', 3 is 'IPMI',...

Hi, I have a zabbix 6.4 proxy running in a docker container with this config: - TLSACCEPT=psk - TLSCONNECT=psk - TLSPSKIDENTITY=PSK001 - TLSPSKFILE=/var/lib/zabbix/enc/psk-file.psk When testing if I can connect to...

The host.delete() api does, but I can't get this api point to take multiple hosts. The docs here are unclear (they are for most API points): https://www.zabbix.com/documentation/6.4/en/manual/api/reference/host/create Says "(object/array) Hosts...

for the host.create() call, at least one interface is required. At the moment, all of our interfaces are DNS base - but the IP address must still be passed along....

You need to change your configuration, cause a simple installation is not possible on Debian 12 systems: ``` root@monitoring:~# pip install zabbix_utils error: externally-managed-environment × This environment is externally managed...

Hello, [Zabbix API](https://github.com/zabbix/python-zabbix-utils/blob/d4f254abb9356fafc719e76a0040da73d78b5308/zabbix_utils/api.py#L119) class allows a developer to enforce certificate validation through `validate_certs` parameter. However, it's not clear where CAs will be found. Furthermore, there's no way of specifying a...

Hello, I have an issue when I try tu use parameter to retrieve filtered results. here's an example ` zabbix = ZabbixAPI(url=ZABBIX_URL, token=ZABBIX_API_TOKEN) test_filter_dict = {'tags.value.0': 'security', 'tags.operator.0': '0', 'tags.tag.0':...

The Zabbix API documentation say I can pass the item id's for which history should be cleared like: "params": [ "10325", "13205" ], This does not work with api.history.clear(params=["10325", "13205"])...

when using the Sender in cluster mode it seems like the python client always try to check all nodes from the beginning till a match is found every single time....

The `AsyncZabbixAPI` class cannot be used in a `with` statement like the `ZabbixAPI` class. This is due to a difference in the initialization process between the two classes. ## Current...