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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...