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
Get Updates on the Splunk Community!

Developer Spotlight with Brett Adams

In our third Spotlight feature, we're excited to shine a light on Brett—a Splunk consultant, innovative ...

Index This | What can you do to make 55,555 equal 500?

April 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

Say goodbye to manually analyzing phishing and malware threats with Splunk Attack ...

In today’s evolving threat landscape, we understand you’re constantly bombarded with phishing and malware ...