Splunk Search

How to edit my map command search in order to pass a field to subsearch within subsearch?

snreichel
Engager

I've concluded that I absolutely need to use mapping, as I need to run the same (large) search query for each Iteration, the list of which must be found through another search. The Iteration must be referenced several times throughout this large search. However, this search also contains other necessary subsearches which use the Iteration as a variable. It works when hardcoded, but I can't pass the $Iteration$ thing into the inner subsearch.

<search to find Iterations>
| map 
    [ search index=caac sourcetype=UserStory _time<[| inputlookup caac_900_Sprint_Dates_lu where Iteration=$Iteration$ | return $epochSprintBegDate] ]

The actual search is much larger, but this is the portion of interest.
This will return the error: "Error in 'search' command: Unable to parse the search: Comparator '<' is missing a term on the right hand side."

0 Karma
1 Solution

micahkemp
Champion

I don't think you want to use time< to set your time period. Use earliest/latest instead. Check out this previous question for how this could be accomplished:

Using a time selector in a .dashboard - how can i make modifications to latest time in a query?

I'm sure there are more examples of this as well, this one just happened to be fresh on my mind.

View solution in original post

somesoni2
Revered Legend

The problem might be the dollar syntax. How about you give this a try. (renaming the output field to keyward query or search will return it's string value.

<search to find Iterations>
 | map 
     [ search index=caac sourcetype=UserStory _time<[| inputlookup caac_900_Sprint_Dates_lu | where Iteration=$Iteration$ | tabel epochSprintBegDate | rename epochSprintBegDate as query] ]
0 Karma

micahkemp
Champion

I don't think you want to use time< to set your time period. Use earliest/latest instead. Check out this previous question for how this could be accomplished:

Using a time selector in a .dashboard - how can i make modifications to latest time in a query?

I'm sure there are more examples of this as well, this one just happened to be fresh on my mind.

snreichel
Engager

_time was the issue
It works with a hardcoded Iteration but not with the mapped one, for some reason; but I did find an alternate method 🙂

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