Hello friends,
I am still quite new to Zabbix and have been trying to complete a simple task for days now, but it won't work:
An item returns a value of type integer. A trigger should fire if this value does not change over a certain period of time.
The value of the item does not currently change!
This trigger does not fire:
changecount(Host/Key[RegistryQuery],10m)=0
According to the documentation, this trigger should fire after ten minutes if the value of the item has not changed.
It does not work with this trigger either:
countunique(Host/Key[RegistryQuery],3m)<1 (or =0)
So I used the DISCARD function in the item to specify that values are no longer written to the DB if they are equal to the previous value and then used this trigger:
nodata(Host/Key[RegistryQuery],3m)=1
But although no more values are written, this trigger does not fire either.
What am I doing wrong?
I am still quite new to Zabbix and have been trying to complete a simple task for days now, but it won't work:
An item returns a value of type integer. A trigger should fire if this value does not change over a certain period of time.
The value of the item does not currently change!
This trigger does not fire:
changecount(Host/Key[RegistryQuery],10m)=0
According to the documentation, this trigger should fire after ten minutes if the value of the item has not changed.
It does not work with this trigger either:
countunique(Host/Key[RegistryQuery],3m)<1 (or =0)
So I used the DISCARD function in the item to specify that values are no longer written to the DB if they are equal to the previous value and then used this trigger:
nodata(Host/Key[RegistryQuery],3m)=1
But although no more values are written, this trigger does not fire either.
What am I doing wrong?
Comment