Hi,
I'm looking for a trigger function that I can use to detect the state of the Zabbix proxy, but it shouldn't release it from problem state until it has been stable for at least 5 minutes.
I want to use that trigger as a dependency for most (if not all) the triggers of the hosts behind that proxy.
Currently my trigger that uses fuzzytime(30) recovers way too quickly, and then I'm getting hundreds of host unreachable notifications.
The best/closest thread that I've seen so far is this old thread: http://www.zabbix.com/forum/showthread.php?t=13827
Otherwise I think I'll have to do a combination trigger that is something in the line of:
I'm currently using Zabbix 1.8.11 and I wrote a patch for dual Y axis limits, so I do have a good understanding of Zabbix 
Help would be greatly appreciated!
Thank you in advance.
I'm looking for a trigger function that I can use to detect the state of the Zabbix proxy, but it shouldn't release it from problem state until it has been stable for at least 5 minutes.
I want to use that trigger as a dependency for most (if not all) the triggers of the hosts behind that proxy.
Currently my trigger that uses fuzzytime(30) recovers way too quickly, and then I'm getting hundreds of host unreachable notifications.
The best/closest thread that I've seen so far is this old thread: http://www.zabbix.com/forum/showthread.php?t=13827
Otherwise I think I'll have to do a combination trigger that is something in the line of:
Code:
<server>:zabbix[proxy,<proxy>,lastaccess].fuzzytime(30)|
({trigger.value}=1} & <proxy>:agent.ping.last(180)#1)

Help would be greatly appreciated!
Thank you in advance.
Comment