Splunk Search

Exclude results from lookup table in search v2?

TurboTurtle
Engager

I'm trying to optimize my Splunk Windows Event Log dashboard, and wanted to add CSV exclusion file that would filter out some events that aren't necessary to monitor.

CSV file contents:

TaskName EventCode
Microsoft Edge 4101
Firefox 4101

 

To filter events, I tried this search query:

AND NOT [ | inputlookup wineventlog_exclusions_v2.csv | rename TaskName as query | fields query, EventCode ]

However it doesn't give me what I want, it converts search string to:

(NOT EventCode="4104" OR NOT "Microsoft Edge") (NOT EventCode="4104" OR NOT "Firefox"))

But I want this:

AND NOT ((EventCode="4104" AND "Microsoft Edge") OR (EventCode="4104" AND "Firefox"))

 

Is there an easy way of using "AND" OR "AND" for CSV inputlookup?

Labels (4)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

What you want is the default for a subsearch and I am guessing you are looking at the search.log showing the Expanded search line.

I think you will find the 

NOT (A AND B)

is the same as (NOT A OR NOT B)

as 

A+B is excluded (is both A AND B)
A+C is included (=NOT B)
B+C is included (=NOT A)

You can always see what your search is doing by running the subsearch with a format statement, i.e.

| inputlookup wineventlog_exclusions_v2.csv | rename TaskName as query | fields query, EventCode | format

and you will see that it is doing what you want

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

What you want is the default for a subsearch and I am guessing you are looking at the search.log showing the Expanded search line.

I think you will find the 

NOT (A AND B)

is the same as (NOT A OR NOT B)

as 

A+B is excluded (is both A AND B)
A+C is included (=NOT B)
B+C is included (=NOT A)

You can always see what your search is doing by running the subsearch with a format statement, i.e.

| inputlookup wineventlog_exclusions_v2.csv | rename TaskName as query | fields query, EventCode | format

and you will see that it is doing what you want

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...