Splunk Search

top n by servicename

DTERM
Contributor

I have a splunk instance with many serviceName's in the logs. Is there a query where I can extract the top 15 of each serviceName? My service names include data such as snmp, syslog, etc. I want the top 15 of each type

Thanks.

Tags (1)
0 Karma
1 Solution

lguinn2
Legend

I am not sure that I understand the results that you want. If you want to see the 15 most common serviceNames, try this

<your search> | top limit=15 serviceName

This will show the most common 15 serviceNames, along with the number of events for each serviceName. The results are displayed in a table. If you click on a row of the table, you will see the underlying events for the corresponding serviceName.

View solution in original post

lguinn2
Legend

I am not sure that I understand the results that you want. If you want to see the 15 most common serviceNames, try this

<your search> | top limit=15 serviceName

This will show the most common 15 serviceNames, along with the number of events for each serviceName. The results are displayed in a table. If you click on a row of the table, you will see the underlying events for the corresponding serviceName.

hazekamp
Builder

Splunk's dedup command is right for the job:

<your search> | dedup 15 serviceName
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, ...