Getting Data In

How to search for matching fields using 2 different host with same sourcetype?

mrtolu6
Path Finder

I'm looking to find matching field (lets call this field action) from 2 different host with the same sourcetype.

example Sourcetype=pan host=1 and host=2

I'm looking to create a ta table that would show the matching field for field action (I only want the matching field to generate result)

so if host 1 has action=allowed and host 2 has action=allowed. I want to create a table that would include the time, action, src, dest.

0 Karma
1 Solution

DalJeanis
Legend

Try this...

index=foo sourcetype=pan (host=1 OR host=2)
| fields host action src dest
| eval time1=case(host="1",_time) 
| eval time2=case(host="2",_time) 
| eval src1=case(host="1",src) 
| eval src2=case(host="2",src) 
| eval dest1=case(host="1",dest) 
| eval dest2=case(host="2",dest) 
| stats values(time*) as time* values(dest*) as dest* values(src*) as src* values(host) as host by action
| where mvcount(host)>1

View solution in original post

0 Karma

DalJeanis
Legend

Try this...

index=foo sourcetype=pan (host=1 OR host=2)
| fields host action src dest
| eval time1=case(host="1",_time) 
| eval time2=case(host="2",_time) 
| eval src1=case(host="1",src) 
| eval src2=case(host="2",src) 
| eval dest1=case(host="1",dest) 
| eval dest2=case(host="2",dest) 
| stats values(time*) as time* values(dest*) as dest* values(src*) as src* values(host) as host by action
| where mvcount(host)>1
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...