Hi,
i have a trigger condition like this:
The trigger should only raise an alert if there is no data for an hour within the defined four time frames. However, this trigger always reports a problem at 20h30 in the evening. From my understanding the trigger should not fire at this time because this time is excluded in the condition. What am i doing wrong here?
Thanks for any help
i have a trigger condition like this:
Code:
nodata(/ZABBIX-SRV/log[/var/log/zabbix.log,"^This is the log message$",,,skip],3600)=1 and ( (time() > 003000 and time() < 004000) or (time() > 063000 and time() < 064000) or (time() > 123000 and time() < 124000) or (time() > 183000 and time() < 184000) )
The trigger should only raise an alert if there is no data for an hour within the defined four time frames. However, this trigger always reports a problem at 20h30 in the evening. From my understanding the trigger should not fire at this time because this time is excluded in the condition. What am i doing wrong here?
Thanks for any help