Hi,
I want to filter my Last Events list so that only events with NetPerfMon Event Log text "EXAMPLETEXT" show up.
Can I use Custom Query to make this happen?
And if so, does anyone bother to help me with the SWQL-script?
Thanks,
Simon Eidem
Got it!
For the record, here is how I did it:
---
SELECT EventTime, Message
FROM Orion.Events
WHERE Message LIKE '%EXAMPLETEXT%'
ORDER BY EventTime DESC
Simon