I've created an alert that I want to trigger when a node has been muted for over 14 days. When I submit the alert is says it'll trigger on 12 objects in the alert scope, but after I submit nothing is triggered. Any thoughts on why this is happening?
SELECT Nodes.Uri, Nodes.DisplayName FROM Orion.Nodes AS Nodes
Join Orion.AlertSuppression n on n.EntityUri=Nodes.Uri
where n.SuppressFrom<=GETUTCDATE()-14 AND n.SuppressUntil is NULL</pre>