By default there is a trigger :
with an expression of:
However if i reboot a server, this will cause this trigger to go off.
I want to set up a trigger that will only go off if the host is unreachable for more than 10 minutes. I tried to do something like:
but that did not seem to work. I also tried to do a simple check and have it ping the server and if it did not receive a ping for 10 minutes strait then trigger:
but that does not return true or false it just stays in a state of unknown.
any tips or suggestions would be helpful!
Code:
Server {HOSTNAME} is unreachable
Code:
{Template_Windows_Servers:status.last(0)}=2
I want to set up a trigger that will only go off if the host is unreachable for more than 10 minutes. I tried to do something like:
Code:
{Template_Windows_Servers:status.min(600)}=2
Code:
{Template_Windows_Servers:icmpping.min(600)}<1
any tips or suggestions would be helpful!
Comment