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
===================================================
(/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.