Hello
I have a trigger which change to ON when there has been no data from the ZABBIX agent for 180s:
Now, I'd like to have it extended to get OFF only, if there has been data for about 300s to prevent flapping and to keep up with the dependencies:
Unfortunatly, there is no function data() itself and I can't use nodata(300)=0. How can I archive this ?
Thanks in advance
Andreas
I have a trigger which change to ON when there has been no data from the ZABBIX agent for 180s:
Code:
{template:agent.ping.nodata(180)}=1
Code:
({template:agent.ping.nodata(180)}=1)|(({TRIGGER.VALUE}=1)&({template:agent.ping.data(300)}=1))
Thanks in advance
Andreas
Comment