Dashboards & Visualizations

Dynamically populate dashboard panel title

bt149
Path Finder

I have a dashboard that has 3 Inputs - "Change Type", time and text box.
The "Change Type" is dynamically populated using "choice value" based on a search string. There are two change types, Config and Admin.
Example:
<form theme="dark">
<label>Admin and Config Change Reports</label>
<description>Change Events</description>
<fieldset submitButton="true" autoRun="false">
<input type="dropdown" token="tok_change" searchWhenChanged="true">
<label>Change Type:</label>
<choice value="index=admin_changes <some other spl>">Admin change</choice>
<choice value="index=config_changes <some other spl>">Config change</choice>

The users much choose from a drop down, one of the above change choices. Once the choice is made a table is populated with the results.

What I want to do is when the panel (table) is populated I want the "change type" to be the panel title.

Thanks in advance.

Labels (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this

<form .....
  <fieldset submitButton="false">
    <input type="dropdown" token="configType">
      <label>Config Type</label>
      <choice value="value1">Admin Change</choice>
      <choice value="value2">Config Change</choice>
      <change>
        <condition>
          <set token="panelTitle">$label$</set>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>Showing data for $panelTitle$</title>
......

View solution in original post

0 Karma

somesoni2
Revered Legend

Try something like this

<form .....
  <fieldset submitButton="false">
    <input type="dropdown" token="configType">
      <label>Config Type</label>
      <choice value="value1">Admin Change</choice>
      <choice value="value2">Config Change</choice>
      <change>
        <condition>
          <set token="panelTitle">$label$</set>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>Showing data for $panelTitle$</title>
......
0 Karma

bt149
Path Finder

Thank you.  Worked like a charm.

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...