Team,
To display events summary on the custom widgets as the Top 10 events should display in CST time zone, I have created the below script but its not working. Please someone help on this. Thanks
SELECT TOP 10
DATEADD(hour, -6, E.EventTime) AS [Time of Event],
E.EventTypeProperties.Name AS [Event],
E.Message AS [Message],
CONCAT('/NetPerfMon/images/Event-',
TOSTRING(E.EventType), '.gif') AS [_IconFor_Message]
FROM Orion.Events AS E
ORDER BY E.EventTime DESC;
-Kumar