Splunk Search

How to find the difference in field values between two lookups

Jasper
Loves-to-Learn Lots

Hello all,

I had a question that I have been trying to figure out how to address within a concise SPL query. 

I have two lookups with a field name of X, lookup1 and lookup2 have all these values populated and I am trying to find a query to output the difference in field values for X between the two lookups. 

lookup1's X value has a Multi-value field, where as lookup2 is only single values.

E.g.

Lookup1 has field values:

Banana

Apple

Oranges

 

Lookup2 has field values:

Banana

 

Expected output from desired query:

Apple

Oranges

 

Is there a way to do this between these two lookups with the above in mind? This seems feasible with one lookup, but comparing two lookups has proven to be difficult. Any support would be appreciated!

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| inputlookup lookup1
| append [| inputlookup lookup2]
| stats count by field
| where count = 1
0 Karma

Jasper
Loves-to-Learn Lots

Thanks for the reply, I could see this working out however I used an alternative approach I would like to share that worked for my purposes. This syntax issue initially was causing some frustration.

 

| from inputlookup:1 | search NOT [ | inputlookup2 ]

 

This logic I believe works only if the first field names are in alignment, can append a pipe and field after inputlookup2 to help this logic work out. This was the most concise query I could find.

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, ...