Splunk Search

inputlookup with matching events

riqbal47010
Path Finder

I have one lookup file. Now I want to see the list of servers that are in the list but not in AV index.

Tags (1)
0 Karma

jacobpevans
Motivator

Greetings @riqbal47010,

Try this (ensuring you have the time option set properly):

| inputlookup lookup.csv
| join type=left max=0 host [
    | index=AV sourcetype=[sourcetype]
    | stats count by host ]
| where isnull(count)

Cheers,
Jacob

Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.
0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...