Splunk Search

How do I join an index with a lookup?

Shashank_87
Explorer

Hi,

I need to join my query with a lookup which contains a field called username. I need to get the users who —

  1. exist in both my main query index and the lookup

  2. exist in lookup but do not exist in the main query index.

This is what my query looks like when i started writing this -

index="prod" sourcetype=prod_events 
| dedup username 
| eval type="MainIndex" 
| eval username = lower(username) 
| fields username type 
| appendpipe 
    [| inputlookup test.csv
    | eval type="lookup" 
    | eval username = lower(username) 
    | sort username
    | fields type username 
        ] 

Any help is appreciated. Many Thanks

0 Karma
1 Solution

Vijeta
Influencer

Add the below code to your search-

|stats dc(type) as dc ,values(type) as type by username | where NOT(dc=1 and type="MainIndex")

View solution in original post

0 Karma

Vijeta
Influencer

Add the below code to your search-

|stats dc(type) as dc ,values(type) as type by username | where NOT(dc=1 and type="MainIndex")
0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

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