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 Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...