Splunk Search

values are missing pot lookup

abdul
Explorer

Not able to find the stats details for all M.  tried fill null . it is not working 

index=UA sourcetype=apps appname="xyz*"
|fields EID
|dedup EID
|lookup employee.csv EID as EID
|search MID in (M1,M2,M3 M4,M5,M6)
|stats count(EID) as total by MID

getting below result. but missing  results for M4, M5, M6

MID               total 
M1                 2
M2                 3
m3                 4

Expecting below results

MID               total 
M1                 2
M2                 3
M3                 4
M4                 0
M5                 0
M6                  0

Labels (2)
Tags (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @abdul,

the lookup command associates the lookup values only to the key values that are in the search results, so, if you haven't results, you cannot associate any lookup value.

You can reach your target with a different approach:

index=UA sourcetype=apps appname="xyz*"
| fields EID
| dedup EID
| lookup employee.csv EID as EID
| search MID in (M1,M2,M3 M4,M5,M6)
| stats count(EID) as EID by MID
| append [ | inputlookup employee.csv | eval count=0 | dedup MID | fields MID count ]
| stats sum(EID) AS total BY MID

In this way you add to your search the condition for the MID not present in the search results.

Ciao.

Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @abdul,

the lookup command associates the lookup values only to the key values that are in the search results, so, if you haven't results, you cannot associate any lookup value.

You can reach your target with a different approach:

index=UA sourcetype=apps appname="xyz*"
| fields EID
| dedup EID
| lookup employee.csv EID as EID
| search MID in (M1,M2,M3 M4,M5,M6)
| stats count(EID) as EID by MID
| append [ | inputlookup employee.csv | eval count=0 | dedup MID | fields MID count ]
| stats sum(EID) AS total BY MID

In this way you add to your search the condition for the MID not present in the search results.

Ciao.

Giuseppe

abdul
Explorer

HI @gcusello ,
thank you so much for your help i really appreciate it
below query works

index=UA sourcetype=apps appname="xyz*"
| fields EID
| dedup EID
| lookup employee.csv EID as EID
| append [ | inputlookup employee.csv | eval count=0 | dedup MID | fields MID count ]
| search MID in (M1,M2,M3 M4,M5,M6)
| stats count(EID) AS total BY MID

0 Karma

abdul
Explorer

Hi @gcusello ,

now below result is appearing 
MID               total 
M1                 0
M2                 0
m3                 0

0 Karma
Get Updates on the Splunk Community!

New Year. New Skills. New Course Releases from Splunk Education

A new year often inspires reflection—and reinvention. Whether your goals include strengthening your security ...

Splunk and TLS: It doesn't have to be too hard

Overview Creating a TLS cert for Splunk usage is pretty much standard openssl.  To make life better, use an ...

Faster Insights with AI, Streamlined Cloud-Native Operations, and More New Lantern ...

Splunk Lantern is a Splunk customer success center that provides practical guidance from Splunk experts on key ...