Hello,
I've been enjoying working with Zabbix and we're currently importing all of our checks from another tool. One thing I'm not sure how to do is delayed timeouts for a notification.
Here are the properties of an example check for a host:
My understanding is that this does a TCP service check against port 80 on the host every 30 seconds.
Next, the Trigger is as follows:
Which works great whenever there's an issue with the TCP to port 80. However, what I want to do now is make it so that the Trigger doesn't fire until the issue is occurring for at least 10 minutes. If it resolves in that time frame, I'm not worried about it. I think that this would require use of the count() function, but I don't know how to write out the Trigger to appropriately check on this; the examples I've seen on the forums don't seem to be specifically applicable.
Any assistance is greatly appreciated.
I've been enjoying working with Zabbix and we're currently importing all of our checks from another tool. One thing I'm not sure how to do is delayed timeouts for a notification.
Here are the properties of an example check for a host:
Code:
TCPConnectionCheck Triggers (1) net.tcp.service[tcp,,80] 30 90 365 Simple check
Next, the Trigger is as follows:
Code:
{<hostname>:net.tcp.service[tcp,,80].last(0)}=0
Any assistance is greatly appreciated.
Comment