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!

Enhance Your Splunk App Development: New Tools & Support

UCC FrameworkAdd-on Builder has been around for quite some time. It helps build Splunk apps faster, but it ...

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...