Splunk Search

How to use the output from one search as input for another search?

mkatz
New Member

I have a search that results in an IP address as the result with the field name clientIP:

host=hostname SSL=TLSv1.2 | stats count by clientIP

Now I want to take the results and use as a search using the same values for clientIP, renamed as RequestIP, such that I'm using the IP addresses from the initial result and using that to count addresses:

host=hostname2 RequestIP | stats count by task
0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this

 host=hostname2 [search host=hostname SSL=TLSv1.2 | stats count by clientIP | table clientIP | rename clientIP as RequestIP ] | stats count by task

View solution in original post

0 Karma

somesoni2
Revered Legend

Try something like this

 host=hostname2 [search host=hostname SSL=TLSv1.2 | stats count by clientIP | table clientIP | rename clientIP as RequestIP ] | stats count by task
0 Karma

MuS
Legend

Just a side note on using subsearches, they have a hard limit - see docs for more details http://docs.splunk.com/Documentation/Splunk/6.3.0/Search/Aboutsubsearches

0 Karma

MuS
Legend

Hi mkatz,

you can combine the searches and run it as one search by using the filldown command:

 host=hostname SSL=TLSv1.2 OR host=hostname2 RequestIP | filldown clientIP RequestIP | where clientIP=RequestIP | stats count by task 

This is un-tested since I don't have your events available, but should get you started.

cheers, MuS

0 Karma

mkatz
New Member

I don't think I explained it very well. I want to take the results of a search that gives me a list of IP addresses and use that list of IP addresses as part of the input for another search. In the first search the IP addresses is in the form of clientIP=IPAddress, but for the second search it needs to be RequestIP=IPAddress as the IPAddress has a different label in the second search.

0 Karma

MuS
Legend

Can you provide one example each?

0 Karma

kserra_splunk
Splunk Employee
Splunk Employee

You might want to try a subsearch to search based off the results of your previous search, there are some examples listed here

http://docs.splunk.com/Documentation/Splunk/6.1.2/SearchTutorial/Useasubsearch

0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud’s AI Assistant in Action Series: Analyzing and ...

This is the second post in our Splunk Observability Cloud’s AI Assistant in Action series, in which we look at ...

Elevate Your Organization with Splunk’s Next Platform Evolution

 Thursday, July 10, 2025  |  11AM PDT / 2PM EDT Whether you're managing complex deployments or looking to ...

Splunk Answers Content Calendar, June Edition

Get ready for this week’s post dedicated to Splunk Dashboards! We're celebrating the power of community by ...