Dashboards & Visualizations

Add Dynamic Title to my Dashboard Panel Based on MultiSelect Input

katzr
Path Finder

Hello I am trying to make my dashboard panel title dynamic and display the Region and Country. Example the user selects North America and United States- I want the title to be that. Below is my code- can you help me edit this with conditions to create a dynamic title that changes as the filters change.

</input>
<input type="multiselect" searchWhenChanged="true" token="region">
  <label>Region</label>
  <prefix>(</prefix>
  <suffix>)</suffix>
  <valuePrefix>Region="</valuePrefix>
  <valueSuffix>"</valueSuffix>
  <delimiter> OR </delimiter>
  <choice value="*">All</choice>
  <choice value="ASIA">ASIA</choice>
  <choice value="EUROPE">EUROPE</choice>
  <choice value="IMEA">IMEA</choice>
  <choice value="NORTH AMERICA">NORTH AMERICA</choice>
  <choice value="LATIN AMERICA">LATIN AMERICA</choice>
  <choice value="UNKNOWN">UNKNOWN</choice>
  <default>*</default>
  <initialValue>*</initialValue>
</input>
<input type="multiselect" searchWhenChanged="true" token="country">
  <label>Country</label>
  <prefix>(</prefix>
  <suffix>)</suffix>
  <valuePrefix>Country="</valuePrefix>
  <valueSuffix>"</valueSuffix>
  <delimiter> OR </delimiter>
  <choice value="*">All</choice>
  <search>
    <query>| inputlookup CurrentSiteInfoCountry.csv | search $region$ | stats count by Country</query>
    <earliest>-15m</earliest>
    <latest>now</latest>
  </search>
  <fieldForLabel>Country</fieldForLabel>
  <fieldForValue>Country</fieldForValue>
  <default>*</default>
</input>
0 Karma

sbbadri
Motivator
<form>
  <label>titletoken</label>
  <fieldset submitButton="false">
    <input type="multiselect" searchWhenChanged="true" token="region">
      <label>Region</label>
      <prefix>(</prefix>
      <suffix>)</suffix>
      <valuePrefix>Region="</valuePrefix>
      <valueSuffix>"</valueSuffix>
      <delimiter> OR </delimiter>
      <choice value="*">All</choice>
      <choice value="ASIA">ASIA</choice>
      <choice value="EUROPE">EUROPE</choice>
      <choice value="IMEA">IMEA</choice>
      <choice value="NORTH AMERICA">NORTH AMERICA</choice>
      <choice value="LATIN AMERICA">LATIN AMERICA</choice>
      <choice value="UNKNOWN">UNKNOWN</choice>
      <default>*</default>
      <initialValue>*</initialValue>
    </input>

  </fieldset>
  <row>
    <panel>
      <title>$region$</title>
      <event>
        <search>
          <query>index=_internal |head 1</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
      </event>
    </panel>
  </row>
</form>
0 Karma

katzr
Path Finder

@sbbadri This displays (Region="*") or (Region="NORTH AMERICA") - I just want to display the label like All or NORTH AMERICA. I'm pretty sure I have to use conditions for the labels but I can't figure out how to get it to work.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

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

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 GA in US-AWS!

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