Do you see anything wrong with this search? The subsearch returns results, however combined with the out search no results are returned. What am I missing?
index=sendmail qid=* [search eventtype=smimta_to to="user@host.com" | fields qid] | transaction
qid | table _time host qid from to subject
Hi splunkranger,
your subsearch returns the qid
field to the main search, but your subsearch does not have any index defined therefore my question are those needed fields all in the same index?
if so, you could do something like this and avoid a subsearch:
index=sendmail qid=* eventtype=smimta_to to="user@host.com" | ...
cheers, MuS
Thanks, please mark this as answered by ticking the tick 🙂
Perfect! Thank you. Adding the `index=' to the sub search works.