Creating an Alert for a location that has 3 devices. I want it to alert a person when any of the 3 nodes are down.
The condition statement goes like this:
Trigger alert when all of the following apply
Node status is equal to Down
Node Name is equal to Device01
Node Name is equal to Device02
Node Name is equal to Device03
Now the alert is triggered only when "all" of these conditions apply right? So I can change it to "any" but that is going to cause an issue with the line "Node status is equal to Down" cause then any node it sees as down regardless of its location it will trigger an alert. How can I do this so it basically says
"If node name is Device01 or Device02 or Device03 and is Down trigger an alert"