Forum Discussion

utegrad's avatar
utegrad
Copper Contributor
Jan 15, 2019
Solved

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.   ...
  • utegrad's avatar
    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
     
     

Resources