Dashboards & Visualizations

How do I refresh all Dropdowns when Submit button is pressed?

BenjaminCCC
Loves-to-Learn Lots

I have a Dashboard that has multiple Dropdowns (Environment, Time Range, Application, Search Parameters) and I have a submit button after all of these. The Application Dropdown is special in the fact that there are 2 applications that need to have the application tag added to the end of it in order to search correctly. Ex, If I want to search for an application most of them look like "index=name source=name app=appname" but for 2 of the applications it needs to look like "index=name source=name app=appname$environment$" I have figured out how to alter the token value based on whether the special apps are chosen using :

<input type="dropdown" token="application" searchWhenChanged="false">

    <choice value="normalapp1">Normal App 1</choice>
    <choice value="normalapp2">Normal App 1</choice>
    <choice value="specialapp1">Special App 1</choice>
    <choice value="specialapp2">Special App 2</choice>

    <change>
        <condition value="specialapp1">
            <set token="application">specialapp1$environment$</set>
        </condition>
        <condition value="specialapp2">
            <set token="application">specialapp2$environment$</set>
        </condition>
    </change>

</input>

The problem is that these changes are nested in this one dropdown so it only works properly when I change the application dropdown and not every time I press submit. Does anybody have a solution for updating all of the dropdowns every time the Submit button is pressed?

Labels (2)
0 Karma
Get Updates on the Splunk Community!

Upcoming Webinar: Unmasking Insider Threats with Slunk Enterprise Security’s UEBA

Join us on Wed, Dec 10. at 10AM PST / 1PM EST for a live webinar and demo with Splunk experts! Discover how ...

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...