Dashboards & Visualizations

Adjusting the x-axis on chart count

dannyzen
Explorer

I'm using | chart count over severity by technique to display events by level of severity
Currently I am not getting severity in order from Highest to Lowest on the x-axis where the order is off in the column chart visualization
I've also tried
| stats count by severity technique

What would be an effective way to have these order correctly?
Thanks in advance!

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

index=_* sourcetype!=audittrail
| stats count BY log_level
| eval _log_level = case(
   log_level=="INFO", 0,
   log_level=="WARN", 1,
   log_level=="ERROR", 2,
   log_level=="MAJOR", 3,
   log_level=="MINOR", 4,
   log_level=="CRITICAL", 5)
| sort 0 _log_level

View solution in original post

0 Karma

woodcock
Esteemed Legend

Like this:

index=_* sourcetype!=audittrail
| stats count BY log_level
| eval _log_level = case(
   log_level=="INFO", 0,
   log_level=="WARN", 1,
   log_level=="ERROR", 2,
   log_level=="MAJOR", 3,
   log_level=="MINOR", 4,
   log_level=="CRITICAL", 5)
| sort 0 _log_level
0 Karma

dannyzen
Explorer

Thank you! this is great

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...