Splunk Search

How to create Dependent Multiselect filter in Splunk dashboard?

itnewbie
Explorer

Hi I have a dashboard with multiple filters. I have a "customer" and "subsidiary" filter. I want the "customer" filter to display corresponding companies depending on the selection of "subsidiary" filter. 

My query for the "customer" filter is as follow, currently it is showing all companies

 

 

index IN ("organization_a_company", "organization_b_company")
| dedup name
| fields name

 

 

 

For the "subsidiary" filter, it has a static input with 

 

 

Name - Value
============
All - *
OrgA - OrgA
OrgB - OrgB

 

 

 

However, since the value of "subsidiary" is different from the actual index name. I need to perform eval case to map to corresponding indexes name. I tried something dynamic in "customer" filter like:

 

 

index IN ("organization_a", "organization_b")
| eval $sub$ = "OrgA" <- the $sub$ token should come from the "subsidiary" filter, I am just testing here
| eval filteredIndex = case($sub$ == "OrgA", "organization_a", $sub$ == "OrgB", "organization_b", 1=1, "organization_*")
| search index IN ($filteredIndex$)
| dedup name
| fields name

 

 

 but it didn't give any results. I tried follow the example here by using $$ but still no luck. And I don't think I can put the eval before the search right? but how can I make the index dynamic then. Thanks

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @itnewbie,

I'd use for the subsidiary search thre fixed values (token called "sub"):

  • All:            index=OrgA,
  • OrgA:      index=OrgB
  • OrgB:      index=OrgA OR index=OrgB

Then I'd use as search for the Customers:

$sub$
| dedup name
| fields name

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...

Splunk AppDynamics Agents Webinar Series

Mark your calendars! On June 24th at 12PM PST, we’re going live with the second session of our Splunk ...

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2025 SplunkTrust is officially open! If you ...