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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...