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!

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