Zabbix 7.4
Hey guys.
I have an item that displays the status of a service. It should display something such as "1 (Up)" or "0 (Down)". It also has a "discard unchanged with hearbeat" of 1h.
I've added a trigger that creates an event whenever the state changes to any value within a given time frame.
Here's the trigger expression:
My assumption is that the trigger should fire if there is at least 1 state change within 3h.
The event should be resolved if there are no state changes within that time frame.
However, I'm seeing new events as expected, but they are not resolved after 3h when there are no state changes.

To verify the "changecount" values that the trigger is evaluating, I added a calculated item with the same expression. It shows that the value is 0.

I don't see an issue with this trigger.
Any thoughts about this?
Hey guys.
I have an item that displays the status of a service. It should display something such as "1 (Up)" or "0 (Down)". It also has a "discard unchanged with hearbeat" of 1h.
I've added a trigger that creates an event whenever the state changes to any value within a given time frame.
Here's the trigger expression:
Code:
changecount(/host/service.state[{#SVC.FULL.NAME}],3h)>=1
My assumption is that the trigger should fire if there is at least 1 state change within 3h.
The event should be resolved if there are no state changes within that time frame.
However, I'm seeing new events as expected, but they are not resolved after 3h when there are no state changes.
To verify the "changecount" values that the trigger is evaluating, I added a calculated item with the same expression. It shows that the value is 0.
I don't see an issue with this trigger.
Any thoughts about this?
Comment