Splunk Search

get count of field group by another

jdepp
Path Finder

This should be so simple but I cannot get it to work. I am trying to create a panel that will display a table with three columns:

 THREAD               TYPE                    COUNT

the search should find the count of each thread and group it by type. for example:

THREAD               TYPE                    COUNT
   A                          searcher              10
   B                          grouper                20
   A                          compiler               2
   C                          searcher                5

Meaning each thread can have different types:

sourcetype="thread.stats" | chart count by thread_id | sort -count by thread_id,type

any help appreciated

Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

hI jdepp,
try

sourcetype="thread.stats" | stats count by thread_id, type | sort -count

It's not clear the sort order.
Bye.
Giuseppe

View solution in original post

cmerriman
Super Champion
 sourcetype="thread.stats" | stats count by thread_id type| sort - count 

try that

jdepp
Path Finder

thanks. Both of you answered almost at the same time. Really appreciate it. But have to go with cusello as he was first by seconds.

0 Karma

gcusello
SplunkTrust
SplunkTrust

hI jdepp,
try

sourcetype="thread.stats" | stats count by thread_id, type | sort -count

It's not clear the sort order.
Bye.
Giuseppe

jdepp
Path Finder

thanks. Both of you answered almost at the same time. Really appreciate it.

0 Karma
Get Updates on the Splunk Community!

Cultivate Your Career Growth with Fresh Splunk Training

Growth doesn’t just happen—it’s nurtured. Like tending a garden, developing your Splunk skills takes the right ...

Introducing a Smarter Way to Discover Apps on Splunkbase

We’re excited to announce the launch of a foundational enhancement to Splunkbase: App Tiering.  Because we’ve ...

How to Send Splunk Observability Alerts to Webex teams in Minutes

As a Developer Evangelist at Splunk, my team and I are constantly tinkering with technology to explore its ...