Dashboards & Visualizations

changing a parameter in multiple charts for a dashboard

habisht
Explorer

Hi All, I'm trying to create a dashboard with multiple charts in a dashboard. And want to change a single parameter i.e. environment in all the charts with a common drop-down. Is there any way to do this?

Tags (1)
0 Karma

niketn
Legend

@habisht this should be straight-forward depending on the field which corresponds to environment using token through Dropdown. For example if environment is linked to index or sourcetype in your data (or both), then you can create a dropdown following the guideline from Splunk Documentation (https://docs.splunk.com/Documentation/Splunk/latest/Viz/FormEditor#Dropdown_input) or Splunk Dashboard Examples App from Splunkbase.

While the Label in the dropdown will show the Label as selected environment, its Value will be the part of SPL (Splunk Query) that needs to change.

Following is an example of dropdown with token $tokEnvironment$ which sets the corresponding environment filter in the SPL (I have taken index to be different for different environment but same sourcetype).

<input type="dropdown" token="tokEnvironment">
   <label>Select Environment</label>
   <default>index=yourDevIndex sourcetype=yourSourceType</default>
   <choice value="index=yourDevIndex sourcetype=yourSourceType">Development</choice>
   <choice value="index=yourStageIndex sourcetype=yourSourceType">Staging</choice>
   <choice value="index=yourProdIndex sourcetype=yourSourceType">Production</choice>
</input>

Then use $tokEnvironment$ in your SPL query

<search>
    <query> $tokEnvironment$ <yourRemainingQueryGoesHere>
    </query>
</search>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...

Data Management Digest – November 2025

  Welcome to the inaugural edition of Data Management Digest! As your trusted partner in data innovation, the ...