Splunk Search

How to run subsearches on individual values of a field from a primary search?

djconroy
Path Finder

I have a primary search that finds all the events that indicate a failure of a process and presents a list of unique values. I then want to take those unique values and submit a subsearch for each value to obtain a field value from the subsearch (only need 1 result, many exist), and then display a table of Search1Field and SubSearchField. For example:

index=subex-ldds StatusCode=PUBLISH_FAIL | rex field=_raw "Endpoint: (?\d+)-\d" | dedup StoreNumber

This might yield results such as:

123

445

480

1012

I would like to then search for 1 event for each StoreNumber to extract the value of a different field (applicationversion) that occurs in a different set of events and display them side by side in a table.

So the second search would need to recurse the list, something like:
search index=subex-ldds applicationversion StoreNumber=123 | rex field=_raw "ApplicationVersion=\"(?\S+)\""
...
and get back a value for store 123 such as:

123 5.1

445 5.0

480 5.1

1012 5.1

I have tried a foreach command but it is not yielding the desired results, so I'm not sure if the syntax is just wrong or if I am using foreach improperly.

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

There could be two ways to do this.

Subsearch

Have the first search as subsearch to second search so that instead of passing individual storenumber, you can pass them all at once.

e.g.

index=subex-ldds applicationversion 
[search index=subex-ldds StatusCode=PUBLISH_FAIL | rex field=_raw "Endpoint: (?<StoreNumber>\d+)-\d" | stats cound by StoreNumber | table StoreNumber ] 
| rex field=_raw "ApplicationVersion=\"(?<applicationversion>\S+)\"" |...rest of the search

Map command

index=subex-ldds StatusCode=PUBLISH_FAIL | rex field=_raw "Endpoint: (?<StoreNumber>\d+)-d" | stats cound by StoreNumber | map [search index=subex-ldds applicationversion StoreNumber=123 | rex field=_raw "ApplicationVersion=\"(?<applicationversion>\S+)\"" |...] maxsearches=100 

Adjust maxsearches value based on max no of result returned by subsearch per StoreNumber.

View solution in original post

somesoni2
Revered Legend

There could be two ways to do this.

Subsearch

Have the first search as subsearch to second search so that instead of passing individual storenumber, you can pass them all at once.

e.g.

index=subex-ldds applicationversion 
[search index=subex-ldds StatusCode=PUBLISH_FAIL | rex field=_raw "Endpoint: (?<StoreNumber>\d+)-\d" | stats cound by StoreNumber | table StoreNumber ] 
| rex field=_raw "ApplicationVersion=\"(?<applicationversion>\S+)\"" |...rest of the search

Map command

index=subex-ldds StatusCode=PUBLISH_FAIL | rex field=_raw "Endpoint: (?<StoreNumber>\d+)-d" | stats cound by StoreNumber | map [search index=subex-ldds applicationversion StoreNumber=123 | rex field=_raw "ApplicationVersion=\"(?<applicationversion>\S+)\"" |...] maxsearches=100 

Adjust maxsearches value based on max no of result returned by subsearch per StoreNumber.

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...