I dont know what's going on with my zabbix. I can see a problem status in dashboard but it get resolved automatically after 1 minute though it is in problem.
Ad Widget
Collapse
zabbix problem automatically resolved in 1 minutes
Collapse
X
-
Tags: None
-
does the issue the dashboard shows is real or false positive ?
what is this trigger about ?
please add more details -
I have a default trigger for p2p connection between routers.
trigger expression is {hostname:ifOperStatus[port25].diff(0)}=1 for port 25.
The trigger is active when problem occurs but didn't lasts more than a minute even though the device is still in problem state.Comment
-
-
Hi, diff()=1 triggers when the value changes. When the next value is collected (in one minute if the item interval is 1m), the trigger is evaluated again. If the new value is the same as previous value, then the diff() is zero, and the problem event is cleared.
Thus, a trigger based on plain diff() is not suitable if you want to sustain the problem status over longer period of time.
MarkkuComment
Comment