Splunk Search

How do I extract top values by a specific field and have them display along with corresponding fields in a table command?

nivekko
New Member
index=* sourcetype=* host=*  | search Event=176 | top limit=20 User| table Location, Event, User, Address, Time

It displays the table but my columns with the fields Location, User, Address and Time appear to be empty. Any reason why?

0 Karma

sundareshr
Legend

Try this

index=* sourcetype=* host=*  Event=176 | stats count list(Location) as L, list(Event) as e, list(Address) as a, list(_time) as t  by User | sort 20 - count | eval z=mvzip(l, mvzip(e, mvzip(a, t))) | rex field=z "(?<Location>[^\,]+)\,(?<Event>[^\,]+)\,(?<Address>[^\,]+)\,(?<Time>.*) | eval Time=strftime(Time, "%x %X") | table Location, Event, User, Address, Time
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, ...