This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Orion EOC SWQL Custom report

Hi, I am trying to create a dashboard with the swql of my SAM environment.  I am not sure if EOC has its own SWQL.  However I am not receiving the same out put in EOC that I am getting through SAM.

Any ideas would be great

example:

SELECT DISTINCT
Nodes.Caption as [DownNodes],
Nodes.detailsurl as [_linkfor_DownNodes],
'/Orion/images/StatusIcons/Small-' + tostring(Nodes.StatusIcon) AS [_IconFor_DownNodes]
,AlertActive.TriggeredDateTime

FROM Orion.AlertObjects (nolock=true) AlertObjects

INNER JOIN Orion.AlertActive (nolock=true) AlertActive ON AlertObjects.AlertObjectID=AlertActive.AlertObjectID

INNER JOIN Orion.Nodes (nolock=true) Nodes ON Nodes.Caption=AlertObjects.RelatedNodeCaption

    Where TriggeredMessage like '%is Down%' and TriggeredMessage not like '%tv%'
Order by TriggeredMessage