Hi - looking for help to generate a report showing nodes that are currently down but excluding nodes that have been muted. I think it is easier to exclude nodes that are unmanaged but couldn't figure how to exclude muted nodes. Thanks in advance.
You can just add all the other fields you need in your report but you could start with something like this
SELECT n.CaptionFROM Orion.Nodes nWHERE n.Status = 2 AND n.NodeID NOT IN (SELECT ID FROM Orion.AlertSuppression)