Splunk Search

How to format results and populate a dashboard dropdown filter with mcatalog?

winknotes
Path Finder

I'm trying to populate a dropdown filter with a mcatalog search to allow a user to select from a list of dimensions. The search works but the results are returned as a long string without line breaks between the items returned. I've been looking and looking for a solution but can't find anything. So I'm reaching out for help.

|mcatalog values(array_name) AS array_name WHERE index="my_index" 

I've tried many many options (eval, rex, table, and so on) to get the results formatted as a list that shows up properly in the dropdown. Thanks in advance.

0 Karma
1 Solution

jacobpevans
Motivator

mcatalog values(xyz) returns the list of all distinct values of the specified field as a multivalue entry (See here)

So, throw in a mvexpand to expand it out, e.g.

| mvexpand array_name

See here for more information regarding Splunk multivalue eval functions, specifically mvexpand

Alternatively, mcatalog has a BY parameter that may be useful to you.

Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.

View solution in original post

jacobpevans
Motivator

mcatalog values(xyz) returns the list of all distinct values of the specified field as a multivalue entry (See here)

So, throw in a mvexpand to expand it out, e.g.

| mvexpand array_name

See here for more information regarding Splunk multivalue eval functions, specifically mvexpand

Alternatively, mcatalog has a BY parameter that may be useful to you.

Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.

winknotes
Path Finder

Brilliant!! So much to learn...so little time.

0 Karma

jacobpevans
Motivator

You're welcome. Don't forget to mark this as the accepted answer if this solved your problem. If not, feel free to reply.

Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...