Splunk Search

How to use subsearches on a different index?

chicocinco
Observer

I want to search all the email logs for a mail transaction.  However we have multiple indexes for our mail logs. 

When i run the search below , it gets the qid  which is the expected behavior. 

 

sourcetype=INDEX_B index=INDEX_B
[search sourcetype=INDEX_A to=*<email address>* | fields msgid |rename msgid as hdr_mid] | table qid

 

where: 

 

msgid/hdr_mid = unique email id in index_A. I have to rename msgid to hdr_mid as thats the name of the field in INDEX_A
qid = another unique id in INDEX_B  that corresponds to INDEX_A

 

What i want to accomplish is that the result of the qid will immediately search all match in INDEX_B but its not generating any search result. Below is the  modified version i made.

 

sourcetype=INDEX_B index=INDEX_B
[search sourcetype=INDEX_B index=INDEX_B | search
[search sourcetype=INDEX_A to=*<email address>* | fields msgid |rename msgid as hdr_mid | rename qid as search]] | table qid

 

 

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Will something like this work?

sourcetype=INDEX_B index=INDEX_B
[search sourcetype=INDEX_B index=INDEX_B
[search sourcetype=INDEX_A to=*<email address>* | fields msgid |rename msgid as hdr_mid] | table qid]
0 Karma

chicocinco
Observer

i tried your suggestions that is remove the second search and move one of the bracked to the last and it threw an error instead

0 Karma

yuanliu
SplunkTrust
SplunkTrust

You get an error because you didn't substitute "<email address>" with a literal string as you originally intended. (You should get the same error if you run your original search with the angled brackets.)

Meanwhile, the original question is rather ambiguous.  If the qid values from the table command are the matching qid from the subsearch, the results from 

sourcetype=INDEX_B index=INDEX_B
[search sourcetype=INDEX_A to=*<email address>* | fields msgid |rename msgid as hdr_mid]]

already contain everything matching these qid's.  What else is expected? (I take that the statement  "I have to rename msgid to hdr_mid as thats the name of the field in INDEX_A" should read as "I have to rename msgid to hdr_mid as thats the name of a matching field in INDEX_B.")

0 Karma
Get Updates on the Splunk Community!

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...