Quantcast
Channel: THWACK: Message List
Viewing all articles
Browse latest Browse all 22513

Re: Report Writer report to display down nodes (or interface) AND event time

$
0
0

Try this custom SQL report:

=======================================

SELECT

       Nodes.NodeID AS NodeID,

       StatusLED AS Status_Icon,

       Status AS Status,

       Nodes.Caption AS NodeName,

       Nodes.VendorIcon AS Vendor_Icon,

       Nodes.IP_Address AS IP_Address,

       AlertStatus.TriggerTimeStamp AS "TIME OF ALERT",

       AlertStatus.Acknowledged AS "Ack",

       AlertStatus.AlertDefID AS "DefID"

FROM

Nodes  LEFT JOIN AlertStatus ON (AlertStatus.ObjectName = Nodes.Caption)

WHERE

(

  (Nodes.Status = '2')

)

Order by NodeName ASC

===================================================

all-down-nodes.jpg

all-down-nodes-link.jpg

(/Orion/NetPerfMon/Alerts.aspx?NetObject=N:${NodeID}&AlertID=${DefID})

 

This should meet your requirement. Please Note:

  • use advanced alerts only. If use basic alert, not alert time displayed
  • if you have more than one down node advanced alert, you may get duplicated results. You can add filter for "AlertStatus.AlertDefID" to remove duplicate.
  • Ack: 0 no, 1 yes. You can click it to go to alert page to add ack

 

Hope this is useful.


Viewing all articles
Browse latest Browse all 22513

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>