Splunk Search

How to compare values in fields from 2 indexes?

Luninho
Explorer

I have 2 indexes: index1 and index2. I need to compare values in both indexes and show only differences in fields. In both indexes always exist the same field - time, so I need match by this field.

For example:

Index1
Time - 26.11.20
Field1 - xxxx
Field2 - xxxx

and

Index2
Time - 26.11.20
Field1 - xxxx
Field2 - xxxy

I want to get a table:

Field2 - xxxx
Field2 - xxxy

Labels (1)
Tags (1)
0 Karma

to4kawa
Ultra Champion
| makeresults
| eval Time="26.11.20",Field1="xxxx",Field2="xxxx"
| appendpipe [eval Time="26.11.20",Field1="xxxx",Field2="xxxy"]
| rename COMMENT as "From here, the logic"
| untable Time Field Value
| stats values(Value) as Value by Time Field
| where mvcount(Value)=2
| xyseries Time Field Value
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...