Splunk Search

How to combine two searches and display as a single table?

pavanae
Builder

I have the below search_1

My search |top 5 users

I have a second search as below

My search |stats values(field_1) as field_1 values(field_2) as field_2 by users

Now how can I combine these two searches and display a result in tabular chart which contains field_1 and field_2 values of the top 5 users only?

0 Karma
1 Solution

MattZerfas
Communicator

Why not just calculate the top users in your stats command by adding a count since that is what top is doing and then only grab the top 5 from the stats results after you sort it ?

... |stats values(field_1) as field_1 values(field_2) as field_2 count by users | sort - count | head 5

View solution in original post

0 Karma

twinspop
Influencer

Use a sub search to collect the top 5 users:

[search My search | top 5 users | fields users] My search |
stats values(field_1) as field_1 values(field_2) as field_2 by users

The results from that sub search are OR'd together, something like this:

(users=ABC OR users=DEF OR users=GHI OR users=JKL OR users=MNO) My search ...
0 Karma

MattZerfas
Communicator

Why not just calculate the top users in your stats command by adding a count since that is what top is doing and then only grab the top 5 from the stats results after you sort it ?

... |stats values(field_1) as field_1 values(field_2) as field_2 count by users | sort - count | head 5
0 Karma

cmerriman
Super Champion
My search |top 5 users|join users [search My search |stats values(field_1) as field_1 values(field_2) as field_2 by users]

it probably isn't the most efficient way but it should work.

0 Karma
Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...