Splunk Search

Correlating Data from 2 Indexes

splunkcol
Builder

I have 2 indexes, one called linux and another called firewall, how can I correlate both indexes to determine if the src field (of the linux index) is equal to the UserIP field (of the firewall index)

 

Labels (3)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @splunkcol,

let me understand: you have two indexes and you want to list all the IPs in both the archives indicanding if they are present in both or only in one, is it correct?

if this is your need, you could run something like this:

index=linux OR index=firewall
| eval ip=coalesce(src,UserIP)
| stats dc(index) AS dc_index values(index) AS index BY ip
| eval status=if(dc_index=2,"Both indexes",if(index="linux","Linux Index","Firewall Index"))
| sort ip
| table ip status

Ciao.

Giuseppe

 

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @splunkcol,

let me understand: you have two indexes and you want to list all the IPs in both the archives indicanding if they are present in both or only in one, is it correct?

if this is your need, you could run something like this:

index=linux OR index=firewall
| eval ip=coalesce(src,UserIP)
| stats dc(index) AS dc_index values(index) AS index BY ip
| eval status=if(dc_index=2,"Both indexes",if(index="linux","Linux Index","Firewall Index"))
| sort ip
| table ip status

Ciao.

Giuseppe

 

gcusello
SplunkTrust
SplunkTrust

Hi @splunkcol,

good for you, see next time!

Ciao and happy splunking.

Giuseppe

P.S.: Karma Points are appreciated 😉

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...