Splunk Search

inputlookup(csv) with Distinct_count

priya777
New Member

Hi There!
I have created a list of 2000 names in a CSV file. I am trying to get the phone numbers of these 2000 people using the below query,

index=*** event=contact [ | inputlookup names.csv | fields names ] | stats dc(phoneNumber) by names | fillnull value=0 names

When I do the distinct count I only get the names who are registered, but I need the remaining names - dc(phone_numbers) as 0, when I run the query.

0 Karma

to4kawa
Ultra Champion
 index=yours event=contact 
| inputlookup append=t names.csv 
| stats dc(phoneNumber) by names 

names.csv:

names
johndoo
hoobar

How about this. If your csv is not this format, fix it.

0 Karma

priya777
New Member

Thanks for your reply, but the above query is not taking the inputs from the file

0 Karma

manjunathmeti
Champion

Your query filters index=*** event=contact with names exist in lookup file. Use OR in the search like below.

index=*** event=contact OR [ | inputlookup names.csv | fields names ] | stats dc(phoneNumber) by names | fillnull value=0 names
0 Karma

priya777
New Member

@DalJeanis Please suggest

0 Karma
Get Updates on the Splunk Community!

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...