Splunk Search

Using the Output from a Search in One Index to Search in a Second Index

JoeHubner
Explorer

I am looking to search in one Index for a specific field name and then use a second field from that Index to search a second Index for that value.  For example

IndexA has field names Project and IRNumber / IndexB has a field named InternalRequest

IRNumber in Index A and InternalRequest in IndexB are the same values

I would like to search IndexA by Project and then use the associated IRNumber from IndexA to search IndexB for the InternalRequest with the same value and then table various values from IndexB associated with that InternalRequest value.  Is there some way to use a sub-search to do this?

Labels (1)
0 Karma
1 Solution

JoeHubner
Explorer

Worked like a charm.  Thanks for the assistance.

View solution in original post

0 Karma

JoeHubner
Explorer

Worked like a charm.  Thanks for the assistance.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

You can do this with subsearches either by adding the subsearch to the main search, or by using a join, or possibly using stats

For example:

index=B [| search index=A project=X | dedup IRNumber | rename IRNumber as InternalRequest | fields InternalRequest]

 

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
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, ...