Jan 15 2019
03:12 PM
- last edited on
Apr 07 2022
05:35 PM
by
TechCommunityAP
Jan 15 2019
03:12 PM
- last edited on
Apr 07 2022
05:35 PM
by
TechCommunityAP
I have put together a query on event log data that I like that gives me the top 10 errors and warnings gathered from event logs by Computer, EventID, Source, EventLevelName, RenderedDescription.
Is there a way I can force the way the barchart visualizes the data in the query?
Here's how the current query aggregates the data:
| summarize Occurances=count() by Computer, EventID, Source, EventLevelName, RenderedDescription| order by Occurances desc nulls last| take 10| render barchart kind=stacked
Jan 15 2019 03:43 PM
SolutionI figured out what I was missing. Changing the summary clause to this, did the trick: