Splunk Search

How to achieve complex filtering on MVFields?

ett
Engager

I am attempting to build a search that pulls back all logs that have a value in a multi-value field but do not have other values. With a few values I do not care if exist or not.

To break it down more.

The field "names" must have "bob".
The field "names" can have any or all "tom","dan","harry" but is not required to have them.
The field "names" cannot have any other value.
I do not have a full list of the names and they can change over time so it is not possible to make a list of the "names" I do not want.

I need other values from the logs just filtering by the "names" field as an example.

As a few examples:

"bob"= returned in the search
"bob","tom" = returned in the search
"tom","dan" = not returned in the search
"bob","sam" = not returned in the search
"bob","harry","fred" = not returned in search

I am having trouble figuring out what to use to exclude multi-value fields in this way.

Labels (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Give this a try (first 4 lines are to generate sample data, replace it with your search)

|  makeresults 
|  eval names=split("bob bob,tom tom,**bleep** bob,sam bob,harry,fred"," ") 
|  mvexpand names
| eval name=split(names,",")
| where isnotnull(mvfind(names,"bob")) AND isnull(mvfilter(NOT match(names,"(bob|tom|\*\*bleep\*\*|harry)$")))

 

View solution in original post

somesoni2
Revered Legend

Give this a try (first 4 lines are to generate sample data, replace it with your search)

|  makeresults 
|  eval names=split("bob bob,tom tom,**bleep** bob,sam bob,harry,fred"," ") 
|  mvexpand names
| eval name=split(names,",")
| where isnotnull(mvfind(names,"bob")) AND isnull(mvfilter(NOT match(names,"(bob|tom|\*\*bleep\*\*|harry)$")))

 

ett
Engager

That where line at the bottom got me where I needed to be.

Thank you for your quick response. 

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...