Splunk Search

searching across multiple indexes with lookups

caseysutherland
Engager

we have two indexes with some overlap in fields. specifically IP addresses. what I would like to is do an initial search dedup all the dest_ips then in the same search string use the deduped list of IPs as the filter on the second index. Is this possible? I would think some type of lookup table is the way to go.

Tags (1)
0 Karma

harsmarvania57
Ultra Champion

Hi,

Can you please try something like this?

index=<index 1> [search index=<index 2> | dedup dest_ip| return dest_ip]

caseysutherland
Engager

does this return all the events in index one that have a dest_ip that exists in the list of dest_ips returned from index 2?

0 Karma

harsmarvania57
Ultra Champion

This will display dest_ip which are in Index 2 and then AND with index 1 dest_ip

So this query works like this index= index 1 AND dest_IP from Index 2

0 Karma

elliotproebstel
Champion

It depends on the size of the result set and the frequency with which you'll run this. If you want to save the results of that first deduped query to use over and over, the lookup file would be a good way to go:

index=first_index
| stats values(dest_ip) AS dest_ip
| outputlookup ip_list

And then to use it in your subsequent searches:

index=second_index 
[ | inputlookup ip_list 
  | stats values(dest_ip) AS dest_ip 
  | format ]

If it's just an ad-hoc thing you want to run once, you are likely fine with a single subsearch:

index=second_index
[ search index=first_index
  | stats values(dest_ip) AS dest_ip
  | format ]
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, ...