PDA

View Full Version : Increase Timeout


infinity
23-05-2005, 00:43
Hi There..

Is it possible to set a recheck on an item before it sets of the trigger (if it is down). We do some external checks, however if our link is soaked doing something else (ie downloads, etc), Zabbix will send an alert stating that an external server is down.

Perhaps its something in the trigger formula I would add?

Cheers,
Matt

johnl
25-05-2005, 10:59
as far as i know it is not possible to do a recheck but you can put a delay so that zabbix will wait a period of time before triggering an alert eg

({server:check_port[XX].last(0)}=0)&({server:check_port[XX].delta(150)}=0)

this waits 150secs before triggering. allows us to reboot services etc without triggering alerts.

regards
john

Alexei
25-05-2005, 11:04
I think this is better (simpler):

{server:check_port[XX].max(150)}=0