Dashboards & Visualizations

Dashboard - Valorize a token based on match condition

edoardo_vicendo
Contributor

Hello,

 

I am trying to set-up a ShowPanel token that I will use later on in the dashboard in this way:

 

<panel depends="$ShowPanel$">

 

 

Here is how I am setting it up

 

    <input type="dropdown" token="tok_usecase" searchWhenChanged="true">
      <label>Use Case</label>
      <choice value="&quot;01&quot;">Use Case 01</choice>
      <choice value="&quot;02&quot;">Use Case 02</choice>
      <choice value="&quot;03&quot;">Use Case 03</choice>
      <choice value="&quot;04&quot;">Use Case 04</choice>
      <choice value="&quot;05&quot;">Use Case 05</choice>
      <choice value="&quot;06&quot;">Use Case 06</choice>
      <default>"01"</default>
      <initialValue>"01"</initialValue>
      <change>
        <condition match="$tok_usecase$==&quot;05&quot;">
          <set token="ShowPanel">true</set>
          <unset token="tok_audit"></unset>
          <unset token="tok_taskID"></unset>
          <unset token="tok_sessID"></unset>
        </condition>
        <condition match="$tok_usecase$!=&quot;05&quot;">
          <unset token="ShowPanel"></unset>
          <unset token="tok_audit"></unset>
          <unset token="tok_taskID"></unset>
          <unset token="tok_sessID"></unset>
        </condition>
      </change>
    </input>

 

 

but it seems the $ShowPanel$ token is not valorized. I tried to print it in the panel title but it appears as $ShowPanel$ instead of having the value equal to "true".

Do you know where the error is?

Thanks a lot,

Edoardo

Labels (3)
Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Gi

    <input type="dropdown" token="tok_usecase" searchWhenChanged="true">
      <label>Use Case</label>
      <choice value="&quot;01&quot;">Use Case 01</choice>
      <choice value="&quot;02&quot;">Use Case 02</choice>
      <choice value="&quot;03&quot;">Use Case 03</choice>
      <choice value="&quot;04&quot;">Use Case 04</choice>
      <choice value="&quot;05&quot;">Use Case 05</choice>
      <choice value="&quot;06&quot;">Use Case 06</choice>
      <default>"01"</default>
      <initialValue>"01"</initialValue>
      <change>
        <condition label="Use Case 05">
          <set token="ShowPanel">true</set>
          <unset token="tok_audit"></unset>
          <unset token="tok_taskID"></unset>
          <unset token="tok_sessID"></unset>
        </condition>
        <condition match="true()">
          <unset token="ShowPanel"></unset>
          <unset token="tok_audit"></unset>
          <unset token="tok_taskID"></unset>
          <unset token="tok_sessID"></unset>
        </condition>
      </change>
    </input>

ve this a try

 

View solution in original post

somesoni2
Revered Legend

Gi

    <input type="dropdown" token="tok_usecase" searchWhenChanged="true">
      <label>Use Case</label>
      <choice value="&quot;01&quot;">Use Case 01</choice>
      <choice value="&quot;02&quot;">Use Case 02</choice>
      <choice value="&quot;03&quot;">Use Case 03</choice>
      <choice value="&quot;04&quot;">Use Case 04</choice>
      <choice value="&quot;05&quot;">Use Case 05</choice>
      <choice value="&quot;06&quot;">Use Case 06</choice>
      <default>"01"</default>
      <initialValue>"01"</initialValue>
      <change>
        <condition label="Use Case 05">
          <set token="ShowPanel">true</set>
          <unset token="tok_audit"></unset>
          <unset token="tok_taskID"></unset>
          <unset token="tok_sessID"></unset>
        </condition>
        <condition match="true()">
          <unset token="ShowPanel"></unset>
          <unset token="tok_audit"></unset>
          <unset token="tok_taskID"></unset>
          <unset token="tok_sessID"></unset>
        </condition>
      </change>
    </input>

ve this a try

 

edoardo_vicendo
Contributor

Thank you so much, it works!

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 ...