I am using the following query. The issue is that I get elements not listed within the "Metaswitch_Platform" group. Any insight would be appreciated.
SELECT TOP 10 COUNT(AlertActiveID) AS Quantity
,[ALERTS].AlertObjects.RelatedNodeCaption AS [Node]
,[ALERTS].AlertObjects.RelatedNodeDetailsURL AS DetailsUrl
,[Nodes].Status
FROM Orion.AlertActive AS [Alerts]
,Orion.Groups AS [Groups]
JOIN Orion.Nodes AS [Nodes] ON [ALERTS].AlertObjects.RelatedNodeID = [Nodes].NodeID
WHERE [Alerts].AlertObjects.RelatedNodeCaption IS NOT NULL
AND [Groups].DisplayName = 'Metaswitch_Platform'
GROUP BY [Alerts].AlertObjects.RelatedNodeCaption
,[Alerts].AlertObjects.RelatedNodeDetailsUrl
ORDER BY COUNT(AlertActiveID) DESC