Greetings,
I want to monitor the license pools.
'wmi.getall' returns a JSON containing several absolutely identical objects, which only differ by the pool size.
What is the standard way of observing the objects individually using a template/discovery?
The JSON file looks something like this:
Basically the contained objects are identical, except for the amount of licenses in the pool. The template should also still work if more License contracts get added at a later point.
I'm quiet new to Zabbix, so I am unsure how Trigger and Item prototypes should be designed as.
Thanks in advance.
I want to monitor the license pools.
'wmi.getall' returns a JSON containing several absolutely identical objects, which only differ by the pool size.
What is the standard way of observing the objects individually using a template/discovery?
The JSON file looks something like this:
Code:
[
{
"Count": 10
"PooledAvailable": 22
}
{
"Count": 40
"PooledAvailable": 44
}
]
I'm quiet new to Zabbix, so I am unsure how Trigger and Item prototypes should be designed as.
Thanks in advance.