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.

List of Muted Nodes

NPM 12 introduced 'mute alerts', but no way to use 'group by'  to view the nodes affected by mute alerts,   This short SWQL will display the nodes affected by mute alerts.

select

n.caption as [Device], n.DetailsURL as [_LinkFor_Device]

,'/Orion/images/StatusIcons/Small-' + StatusIcon AS [_IconFor_Device]

,n.IP_Address as [IP], n.DetailsURL as [_LinkFor_IP]

, Alerts.SuppressFrom as [Mute from], Alerts.SuppressUntil as [Mute Until]

from Orion.AlertSuppression AlertS

join Orion.nodes n on n.uri = AlertS.EntityURI

pastedImage_0.png

Thanks

Amit

Parents
  • I realize this is really old but I'm stumbling through some of the same things. 

    I've tinkered and cobbled together solutions from other similar scripts.  The problem for me was that most all the statements were using UTC.  I used local w/ the following (harvested from other Thwack posts)

    ,tostring(tolocal(n.UnManageFrom)) AS [From]

    tostring(tolocal(n.UnManageUntil)) end AS [Until]

Reply
  • I realize this is really old but I'm stumbling through some of the same things. 

    I've tinkered and cobbled together solutions from other similar scripts.  The problem for me was that most all the statements were using UTC.  I used local w/ the following (harvested from other Thwack posts)

    ,tostring(tolocal(n.UnManageFrom)) AS [From]

    tostring(tolocal(n.UnManageUntil)) end AS [Until]

Children
No Data