Splunk Search

Top & Fields command

anasshsa
Engager
index=uberAgent 
| top 5 SessionID by host | fields - Anzahl, precent

This code returns all events in the index instead of five and removes no counts and percent fields. Who can be the problem?alt text

Tags (2)
0 Karma

somesoni2
Revered Legend

Your query is fetching top 5 sessionID for each host (all hosts will be shown). What was your requirement?

Regarding removing the fields, the percent field name is misspelled (written as precent) hence it's not removed. For removing count, try to use field name count itself. (try | fields - count, percent)

0 Karma

niketn
Legend

@somesoni2 actually better would be to use showperc=f and showcount=f arguments in the top command itself.

| top 5 SessionID by host showperc=f showcount=f

@anasshsa your query id giving you top 5 sessions for each host. If that is your requirement you can try the following:

 index=uberAgent 
| top 5 SessionID by host showperc=f 
| xyseries host SessionID count

Please let us know if you are looking for something else.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2026-2027 SplunkTrust is officially open. If ...