Splunk Search

Lookup in multiple indexes and compare

chrishatfield21
Path Finder

I have been searching for this for a bit now and haven't come up with anything just yet. I am trying to take a list of devices in one index and see if the same name exists in another index. An example would be looking up my computer in one index and seeing if it exists in our index that contains anti-virus information. Any help or direction would be great.

Tags (3)
0 Karma

somesoni2
Revered Legend

Or something like this. (same assumption as @richgalloway, common field exists between two indexes)

index=index2 [search index=index1 | stats count by commonfield | table commonfield]
0 Karma

richgalloway
SplunkTrust
SplunkTrust

index=index1 | fields computer | join type=inner computer [search index=index2] | ...

This assumes the field computer exists in both indices. If it doesn't add a rename command before the join.

---
If this reply helps you, Karma would be appreciated.

richgalloway
SplunkTrust
SplunkTrust

Please accept the answer.

---
If this reply helps you, Karma would be appreciated.
0 Karma

chrishatfield21
Path Finder

Works great. Thanks for the fast response.

0 Karma
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...