Getting Data In

How to show the host name from a CSV lookup file when there are no results found?

robwheeler
Engager

I have tried various suggestions from this site but I'm unable to get the desired results.

A 3rd party installs UF's (Universal Fowarders) and provides a csv list of hosts that have been deployed. I have this list loaded into Splunk as a csv lookup file.

What I need to achieve is show the host name from the csv file where there is no match in search results, it also must deal with case insensitive.

The csv is very simple
host,owner,os

The result should be the hosts that are yet to show in the search results so a report can be run and delivered to the vendor to resolve.

What I have tried so far is similar to this, but does not deal with case and I'm not 100% sure its giving accurate results.

| inputlookup uf_deploy.csv | search NOT [search index=*_linux OR index=wineventlog host=* | dedup host | fields host] 

Any help would be great.

Regards

Rob

0 Karma
1 Solution

sundareshr
Legend

Try this

| inputlookup uf_deploy.csv | eval host=lower(host) | search NOT [ | metadata type=hosts index=linux OR index=wineventlog | eval host=lower(host) | fields host ]

View solution in original post

0 Karma

sundareshr
Legend

Try this

| inputlookup uf_deploy.csv | eval host=lower(host) | search NOT [ | metadata type=hosts index=linux OR index=wineventlog | eval host=lower(host) | fields host ]
0 Karma

robwheeler
Engager

Thank you!!

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...