Splunk Search

How to use the _time field from the results of one search to run another search on another host and sourcetype?

neiowe
Path Finder

I am looking to take the results of the following search:

sourcetype="cisco:asa" AND dest_ip=10.3.10.12 AND dest_port=22 | table _time, src_ip, src_port, dest_ip, dest_port 

and use the _time field from the results and then search the following host/sourcetype:

sourcetype="WinEventLog:Security" host=dc001-sd502v

for all events within +/_ 2.5 secs of the _time from the first search. Would I use a subsearch to accomplish this? If so, can someone guide me on what the outer search would look like? Is there a better way to accomplish this?

Tags (3)
0 Karma
1 Solution

cmerriman
Super Champion

try something like :

sourcetype="cisco:asa" AND dest_ip=10.3.10.12 AND dest_port=22 | table _time, src_ip, src_port, dest_ip, dest_port 
|bucket _time span=5s
|join _time [search sourcetype="WinEventLog:Security" host=dc001-sd502v|bucket _time span=5s]

might get you what you need, or close to it.

View solution in original post

cmerriman
Super Champion

try something like :

sourcetype="cisco:asa" AND dest_ip=10.3.10.12 AND dest_port=22 | table _time, src_ip, src_port, dest_ip, dest_port 
|bucket _time span=5s
|join _time [search sourcetype="WinEventLog:Security" host=dc001-sd502v|bucket _time span=5s]

might get you what you need, or close to it.

neiowe
Path Finder

Thanks. That works great too. The only change I had to make was to add search inside the open bracket. I like this command since the output includes both the fields from the initial search.

0 Karma

cmerriman
Super Champion

oops, sorry about forgetting 'search'! glad it worked!

0 Karma

somesoni2
Revered Legend
0 Karma

neiowe
Path Finder

Thanks. The Map command does the trick.

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...