Splunk Search

how to sort a stacked bar chart by "length"

wsw70
Communicator

Hello,

I have a report with a stacked bar chart I would like to sort by "length", ie. by the total number of events in a bar. The search is

... | chart count over N_vendor by N_subnetname 

and I get the following graph.

I would like to get the graph sorted so that the largest bars (java, redhat, ... in the graph) are up.

Thanks!

Tags (3)
1 Solution

rturk
Builder

Hi Wsw70,

So I got curious... try this:

<base search> 
| chart count over N_vendor by N_subnetname 
| addtotals fieldname=total 
| sort -total 
| fields - total

There's probably a more elegant way to do that, but it does the trick 🙂

View solution in original post

rturk
Builder

Hi Wsw70,

So I got curious... try this:

<base search> 
| chart count over N_vendor by N_subnetname 
| addtotals fieldname=total 
| sort -total 
| fields - total

There's probably a more elegant way to do that, but it does the trick 🙂

wsw70
Communicator

Thanks - it works perfectly. I have another question regarding picking up the top 5 + what remains but I will put that in another question

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...