Splunk Search

get rows in lookup that does not have entry in search result

dchoubey
Engager

I have a Lookup "Consumer_Lookup.csv" (30 rows approx)

Consumer     Restricted

A                         Y

B                         Y

C                         N

Search - Index = "xyz" |stats count(Status) AS Total by ClientId|Table ClientId TOtal

ClientId         Total

A                       500

C                       200

my requirement is to find any Consumer in Lookup with Restricted = "Y" not in the search result. Can you please advise on how to proceed. Should I use Join or any other alternative .

 

Thanks for your help!!

 

Labels (2)
0 Karma
1 Solution

abowesman
Explorer

@dchoubey 

 

base_search
| append [
  | inputlookup Consumer_Lookup.csv
  | rename Consumer as ClientId
]
| stats values(*) as * by ClientId
| where isnull(Total)

 

will do the trick

 

View solution in original post

dchoubey
Engager

Thank you @abowesman it worked perfectly

 

 

0 Karma

abowesman
Explorer

@dchoubey 

 

base_search
| append [
  | inputlookup Consumer_Lookup.csv
  | rename Consumer as ClientId
]
| stats values(*) as * by ClientId
| where isnull(Total)

 

will do the trick

 

Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...