Splunk Search

How to sort list by size of group by?

viggor
Path Finder

I have a query of the form

'stats list(body) AS events BY id

Which gives me for example:

id body
1 jack
2 foo
  bar
  joe
3 sun
  moon

I would like this to be sorted according to the size of each group, i.e., the output should be

    id body
    2 foo
      bar
      joe
    3 sun
      moon
    1 jack

How would I achieve this?

Tags (3)
0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

your base search | stats list(body) AS events BY id | eval t=mvcount(events) | sort -t | fields -t 

View solution in original post

somesoni2
Revered Legend

Try like this

your base search | stats list(body) AS events BY id | eval t=mvcount(events) | sort -t | fields -t 

viggor
Path Finder

Nice thanks, should the last part of your query maybe be sort -t | table id events -t ?

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, ...