Dashboards & Visualizations

Conditional for hidden panels

JoshuaJohn
Contributor

When I click one of my panels it shows another one, I want to be able to click that original panel and re-hide the panel that is now showing.

I tried doing something like this, but couldn't get it working.

<drilldown>
  <condition NotinUse !=="true">
    <set token="NotinUse">true</set>
  </condition>
  <condition NotinUse=="true">
    <set token="NotinUse">"false"</set>
  </condition>
</drilldown>
0 Karma
1 Solution

niketn
Legend

@JosuaJohn... Please try the following:

    <drilldown>
      <condition match="$NotinUse$==&quot;true&quot;">
        <unset token="NotinUse"></unset>
      </condition>
      <condition>
        <set token="NotinUse">true</set>
      </condition>
    </drilldown>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

0 Karma

niketn
Legend

@JosuaJohn... Please try the following:

    <drilldown>
      <condition match="$NotinUse$==&quot;true&quot;">
        <unset token="NotinUse"></unset>
      </condition>
      <condition>
        <set token="NotinUse">true</set>
      </condition>
    </drilldown>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

rjthibod
Champion

You need to slightly adjust your syntax. I would suggest renaming the token to be slightly more logical, like the following.

 <drilldown>
   <condition match="'InUse' != &quot;true&quot;'>
     <set token="InUse">true</set>
   </condition>
   <condition match="'InUse' == &quot;true&quot;'>
     <unset token="InUse"/>
   </condition>
 </drilldown>

...
<panel depends="$InUse$">
0 Karma
Get Updates on the Splunk Community!

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...