Hi all,
Wondering if someone can help me out this this SWQL command, how do I combine the two status columns and merge into one?
SELECT TOP 10 [Alerts].AlertObjects.EntityCaption, [Alerts].TriggeredMessage, TOLOCAL([Alerts].TriggeredDateTime) AS Alerttime, [Interface].Status, [Nodes].Status
FROM Orion.AlertActive AS [Alerts]
LEFT JOIN Orion.NPM.Interfaces AS [Interface]
ON [Alerts].AlertObjects.EntityCaption = [Interface].Caption
LEFT JOIN Orion.Nodes AS [Nodes]
ON [Alerts].AlertObjects.EntityCaption = [Nodes].Caption