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.

Ability to view scheduled mutes

As far as I can tell, the option to see upcoming maintenance is limited to "unmanage" only. I cannot seem to find a way to see upcoming "muted" anywhere. When I select the columns to view, I was hoping to find a way to add a view for the "muted alerts". I can go into each node I know I set to be muted and I see the following:

pastedImage_0.png

Is there any way to show this in a group of nodes?

  • Not sure if this is the type of thing you are after or not...  This SWQL query returns nodes that are either muted, or have scheduled mutes coming up.

    SELECT N.Caption AS Name,

           toLocal(A.SuppressFrom) AS "Start",

           toLocal(A.SuppressUntil) AS "Stop",

           n.DetailsUrl AS [_LinkFor_Name],

           '/Orion/images/StatusIcons/Small-' + N.StatusIcon AS [_IconFor_Name]

    FROM Orion.AlertSuppression AS A

    INNER JOIN Orion.Nodes AS N

        ON A.EntityUri=N.Uri

    INNER JOIN Orion.NodesCustomProperties AS C

        ON N.NodeID=C.NodeID

    ORDER BY A.SuppressFrom