Splunk Search

Feed result from one search into multiple subsequent searches

wang
Path Finder

I want to get a list of ip and then feed that list into 3 subsequent searches that will each produce a count by column and end up with a table like:

ip countA countB countC

1st search:  index=test source=ip-log ip | table ip | sort ip
2nd search:  index=test source=logA *ip-list-from-1st-search* patternA | stats count as countA by ip
3rd search:  index=test source=logB *ip-list-from-1st-search* patternB | stats count as countB by ip
4th search:  index=test source=logC *ip-list-from-1st-search* patternC | stats count as countC by ip

I can combine the 1st and 2nd search with subsearch and produce a table ip, countA. But I don't know how to chain in the 3rd and 4th searches since their events only have ip but not countA.

I've also played with appendcols but the problem there is I have to re-execute the 1st search for every appendcols subsearch.

So how do I pass the result of the 1st search into 3 subsequent independent searches and stitch the columns into one table?

Tags (2)
0 Karma

Ayn
Legend

Are you using this for a dashboard of some sort? In that case I suggest you look into using postprocessing for achieving this.

Otherwise you could put your pattern matching into the stats command using eval operators. Like this:

index=test (source=logA AND patternA) OR (source=logB AND patternB) OR (source=logC AND patternC) [search index=test source=ip-log ip | fields ip] | stats count(eval(searchmatch(patternA))) as countA, count(eval(searchmatch(patternB))) as countB, count(eval(searchmatch(patternC))) as countC by ip
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...