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!

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