Splunk Search

How can I use the result of subquery field as wildcard?

myusufe71
Explorer

I have subquery result as

host1

host2

host2

And I want to put this all host result as host=*  in the main query.

1. subquery

| inputlookup test.csv | search cluster="cluster1" | stats count by host | fields - count

 

2. main query

using subquery, as

index=abc host="*"

host="*" is subquery result.

Or is there any way to extract subquery result as host IN (host1, host2, host3) in main query?

 

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @myusufe71 ,

let me understand: you want to filter results of the main search with the results of the subsearch, is it correct?

in this case, please, try this:

index=abc [ | inputlookup test.csv WHERE cluster="cluster1" | dedup host | fields host ]

put only attention that the field to use as key (host) is the same in both main and sub search (it's case sensitive!).

Ciao.

Giuseppe

View solution in original post

myusufe71
Explorer

Wow it works. @gcusello you are super duper. Thanks!

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @myusufe71 ,

good for you, see next time!

let me know if I can help you more, or, please, accept one answer for the other people of Community.

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated 😉

gcusello
SplunkTrust
SplunkTrust

Hi @myusufe71 ,

let me understand: you want to filter results of the main search with the results of the subsearch, is it correct?

in this case, please, try this:

index=abc [ | inputlookup test.csv WHERE cluster="cluster1" | dedup host | fields host ]

put only attention that the field to use as key (host) is the same in both main and sub search (it's case sensitive!).

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Federated Search for Amazon S3 | Key Use Cases to Streamline Compliance Workflows

Modern business operations are supported by data compliance. As regulations evolve, organizations must ...

New Dates, New City: Save the Date for .conf25!

Wake up, babe! New .conf25 dates AND location just dropped!! That's right, this year, .conf25 is taking place ...

Introduction to Splunk Observability Cloud - Building a Resilient Hybrid Cloud

Introduction to Splunk Observability Cloud - Building a Resilient Hybrid Cloud  In today’s fast-paced digital ...