I have the following Advanced SQL report in Report Writer:
SELECT TOP 1000 [TimeStamp]
,[ApplicationName]
,[ComponentName]
,[ComponentStatus]
,[ResponseTime]
,[Threshold-ResponseTime-Warning]
,[Threshold-ResponseTime-Critical]
FROM [NetPerfMon].[dbo].[APM_AlertsAndReportsData]
WHERE (NodeName = Node)
ORDER by ResponseTime DESC
It returns the results I need, but I would also like to tack on a status indicator. (ie, the colored status icon of the monitored component).
How can I achieve this? It seems like something simple to do, but I am no SQL whiz, and all attempts to achieve this or find someone else on Thwack who has done it have failed.