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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...