Good afternoon everyone!
I working on an alert to trigger whenever a user mutes a node without specifying a end-date. I tested the following SWQL query in SWQL Studio:
SELECT Nodes.Uri, Nodes.DisplayName FROM Orion.Nodes AS Nodes
Join Orion.AlertSuppression n on n.EntityUri=Nodes.Uri
where n.SuppressUntil is NULL
It successfully provides me a list of nodes muted without an end-date. When I popped into the alert I attached to this thread, it even gives me a warning about the nodes listed as objects that will be triggered immediately. However nothing happens when I make it active. I expected it to pop up as an active alert, what have I done wrong? I would appreciate any advice that anyone can provide. Thanks!