Can I create a Log Viewer Page or Dashboard with specific filter ?No need to click on the Filters every time ?
e.g. the page can only show a specific node syslog message.
or anyway I can grep the message and display to the dashboard?
You can try something like this
SELECTOOL.LogMessageSource.OrionNode.Caption as [Node Name], addhour(-5, OOL.DateTime) as [Time], OOL.Tags.Name as [tag], OOL.Level,OOL.Message AS [Message]FROM Orion.OLM.LogEntry OOLwhere OOL.Tags.Name='User Logon'
or
selectOriNodes.Caption as [Node Name], count(OOL.NodeID) as [Number of Hits]from Orion.OLM.LogEntry OOLInner join Orion.Nodes OriNodes ON OOL.NodeID = OriNodes.NodeIDwhere OOL.DateTime >= ADDHOUR(-1, GETUTCDATE()) AND OOL.Tags.Name='Windows System'GROUP BY OriNodes.Caption