Forum Discussion
utegrad
Jan 15, 2019Copper Contributor
How to define the Y axis visualization of a barchart in the query
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. ...
- Jan 15, 2019
I figured out what I was missing. Changing the summary clause to this, did the trick:
summarize Occurances = count(EventID) by Computer, Source, EventLevelName, RenderedDescription
utegrad
Jan 15, 2019Copper Contributor
I figured out what I was missing. Changing the summary clause to this, did the trick:
summarize Occurances = count(EventID) by Computer, Source, EventLevelName, RenderedDescription