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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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