Hi everybody
I tried to figure out (with Zabbix 1.6.4) if I could make an Action depend on the following condition
(Trigger Description not like "Test") AND
(NOT (Host == "A" AND Time period in 1-7,22:45-23:15))
Reason: Host A automatically reboots every night at 23:00 and I want to suppress alerts. And we have some triggers defined with "Test" in the name, which we don't want alerts for either.
I did not succeed in specifying the above condition in one single action. As workaround, I created 2 action, so the problem is solved.
I just want to know if the above could have been done in one single action?
PS: Logic says I can rewrite the above as
(Trigger Description not like "Test") AND
(Host <> "A" OR Time period not in 1-7,22:45-23:15)
but I didn't succeed with this either :-/
I tried to figure out (with Zabbix 1.6.4) if I could make an Action depend on the following condition
(Trigger Description not like "Test") AND
(NOT (Host == "A" AND Time period in 1-7,22:45-23:15))
Reason: Host A automatically reboots every night at 23:00 and I want to suppress alerts. And we have some triggers defined with "Test" in the name, which we don't want alerts for either.
I did not succeed in specifying the above condition in one single action. As workaround, I created 2 action, so the problem is solved.
I just want to know if the above could have been done in one single action?
PS: Logic says I can rewrite the above as
(Trigger Description not like "Test") AND
(Host <> "A" OR Time period not in 1-7,22:45-23:15)
but I didn't succeed with this either :-/

Comment