Splunk Search

inputlookup excluding index

jmo1
Path Finder

 I am trying to write a query that will ignore events in certain indexes (these indexes change over time).  I have a CSV file with a single column that looks like this...

Index

a

b

c

   NOTE: this is a simple example, it really has 25+ indexes

 

 

 

host=* NOT index=[| inputlookup Index.csv | fields Index]

 

 

  This is my non-working attempt.  The actual query is irrelevant (host=*), the point is that I want to ignore any hits where the index is in the CSV file (index!=a index!=b index!=c).

 

Any help would be greatly appreciated.

 

Labels (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

You don't need the index=... and case is important, so use this

host=* NOT [ | inputlookup indexes.csv | rename Index as index ]

Note the rename, as your column is Index, not index, so either change the column name in the table and just use | table index or go with the above

 

View solution in original post

0 Karma

bowesmana
SplunkTrust
SplunkTrust

You don't need the index=... and case is important, so use this

host=* NOT [ | inputlookup indexes.csv | rename Index as index ]

Note the rename, as your column is Index, not index, so either change the column name in the table and just use | table index or go with the above

 

0 Karma

jmo1
Path Finder

Thank you!  It is working.

0 Karma
Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...