Splunk Search

Subquery Does Not Return Any Result

pramit46
Contributor

I have two different sourcetypes: S1 and S2 (under different indexes)

I want to print, three extracted custom fields from those two sourcetypes: F1 & F2 (belong to S1) and F3 (belongs to S2). I used the following query:

sourcetype= S1 or sourcetype= S2 | fields F1, F2, F3

It shows "No results found."

Basically, my motive is to print the values of certain fields from these two sourcetypes including F1, F2 & F3.

When I use: sourcetype= S1 | fields F1, F2 it comes up nice.

F1, F2, F3 can be multivalued fields which may or may not contain same values.

Any suggestions?

0 Karma
1 Solution

MuS
Legend

Hi pramit46,

Your search brings no result, because you will not have any events containing all three fields. You only have either F1 and F2 or F3.

But to get all three fields try something like this:

 sourcetype=S1 OR sourcetype=S2 | stats values(F1) AS F1, values(F2) AS F2, values(F3) AS F3 

hope this helps ...

cheers, MuS

View solution in original post

MuS
Legend

Hi pramit46,

Your search brings no result, because you will not have any events containing all three fields. You only have either F1 and F2 or F3.

But to get all three fields try something like this:

 sourcetype=S1 OR sourcetype=S2 | stats values(F1) AS F1, values(F2) AS F2, values(F3) AS F3 

hope this helps ...

cheers, MuS

pramit46
Contributor

Thanks @MuS,
I tried that, too.. But did not get much luck. then I realized that I had to use the or as OR and it worked.

0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

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 ...