Getting Data In

Filtering search results with mvfilter

CaninChristellC
Explorer

I'm creating a dashboard that displays events relating to servers ("host" field in the search). I want to allow the user to specify the hosts to include via a checkbox dashboard input, however I cannot get this to work.

To simplify the development process, I've mocked up the input into a search as so:

eventtype=SomeEventType | eval servers="serverName01;serverName02;serverName03" | makemv delim=";" servers | search mvfilter(host,servers)

(In the dashboard I obviously don't need to "eval servers=" and the "servers" is referenced $servers$, again I only changed this so I could play around with it in the raw search app)

...With my understanding is that it should filter the search results based on those that return "true." The search doesn't error out, but I get no results. However, with the search instead as simply:

eventtype=SomeEventType host="serverName01"

I do get results back.

How do I filter the results, correctly?

0 Karma

knielsen
Contributor

Hi,

You are not even using the mvfilter function, you are searching for it as a string.

What is the goal, do you want to filter for events that have the host in the list of servers, or do you want to change the servers list somehow?

If it is the former question, then you could use the mvfind command, eg:

| makeresults 
| eval host="serverName02", servers="serverName01;serverName02;serverName03" 
| makemv delim=";" servers 
| where isnotnull(mvfind(servers,host))

Is that what you were looking for?

Hth,
Kai.

0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...