Howdy,
monitoring if a process is running is easy with a trigger like:
But how can I tell Zabbix to only fire the trigger if the process is down for more than a minute?
Use case: Some processes get routinely restarted. That shouldn't fire a trigger each time. Similiarily, if a routine update gets installed, the process is shutdown for a few seconds during the update; that shouldn't lead to a notification either.
I already tried with this:
but this sets off an alarm as soon as the process is down.
Soo... how can I tell Zabbix to alert only if a process is down for more than 1 minute?
Cheers,
Robert
monitoring if a process is running is easy with a trigger like:
Code:
{Template_Services:proc.num[ddclient - slee].last(0)}=0
Use case: Some processes get routinely restarted. That shouldn't fire a trigger each time. Similiarily, if a routine update gets installed, the process is shutdown for a few seconds during the update; that shouldn't lead to a notification either.
I already tried with this:
Code:
{Template_Services:proc.num[ddclient - slee].min(120)}<1
Soo... how can I tell Zabbix to alert only if a process is down for more than 1 minute?
Cheers,
Robert
Comment