Splunk Search

Can't we use NOT in searchmatch function

sarahnazzar
Explorer

Hi Splunkers!

I've a doubt regarding searchmatch function, when I tried excluding some string using NOT boolean inside a searchmatch..it is not working fine although AND/OR Boolean is working fine..

Can't we use NOT while using searchmatch in query?

Below is my sample query:

index=xxx source=yyy "Issue-1111" OR "Issue-1122" OR "Failure-1212" OR "Failure-1111" OR "Failure-"
|eval Result=case(searchmatch("Issue-1111"), "Desc 1",
searchmatch("Issue-1122"), "Desc 2",
searchmatch("Failure-1212"), "Desc 3",
searchmatch("Failure-1111"), "Desc 4",
(searchmatch("Failure-
") NOT searchmatch("Failure-1111") NOT searchmatch("Failure-1212") , "All Failures Excluding Desc3&4"))
|stats count by Result

Thanks in Advance!

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

NOT is allowed in that use case, but must be accompanied by AND or OR. For example,

|eval Result=case(searchmatch("Issue-1111"), "Desc 1",
searchmatch("Issue-1122"), "Desc 2",
searchmatch("Failure-1212"), "Desc 3",
searchmatch("Failure-1111"), "Desc 4",
(searchmatch("Failure-") AND NOT searchmatch("Failure-1111") AND NOT searchmatch("Failure-1212") , "All Failures Excluding Desc3&4"))
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

NOT is allowed in that use case, but must be accompanied by AND or OR. For example,

|eval Result=case(searchmatch("Issue-1111"), "Desc 1",
searchmatch("Issue-1122"), "Desc 2",
searchmatch("Failure-1212"), "Desc 3",
searchmatch("Failure-1111"), "Desc 4",
(searchmatch("Failure-") AND NOT searchmatch("Failure-1111") AND NOT searchmatch("Failure-1212") , "All Failures Excluding Desc3&4"))
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...