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!

Agent Mode Engaged! Enchaining Agentic Operations with Splunk AI Assistant 2.0

    Are you ready to transform how your team handles complex data requests? We invite you to our upcoming ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

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