Dashboards & Visualizations

Why do I have to click on the data twice for hidden panel show up?

ashidhingra
Path Finder

 

 <single>
<search>
<query>|query</query>
<earliest>$time_token2.earliest$</earliest>
<latest>$time_token2.latest$</latest>
</search>
<option name="drilldown">all</option>
<option name="refresh.display">progressbar</option>
<drilldown>
<set token="hide_details">$click.name$</set>
<unset token="form.hide_details"></unset>
</single>



<input type="checkbox" token="hide_details">
<label></label>
<choice value="hide">Hide Details</choice>
<change>
<condition value="hide">
<unset token="hide_details"></unset>
</condition>
</change>
<delimiter> </delimiter>
</input>




</drilldown>

 

Labels (2)
0 Karma
1 Solution

renjith_nair
Legend

You have included both set and unset in the drill down and that might be the reason.

Assuming that you have another detailed panel which is visible only when you click on the single value panel, try below run anywhere example

<form>
  <label>test</label>
  <fieldset submitButton="false">
    <input type="time" token="time_token2">
      <label></label>
      <default>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </default>
    </input>
  </fieldset>
  <row>
    <panel>
      <input type="checkbox" token="hide_details">
        <label></label>
        <choice value="hide">Hide Details</choice>
        <change>
          <condition value="hide">
            <unset token="hide_details"></unset>
          </condition>
        </change>
        <delimiter> </delimiter>
      </input>
      <single>
        <search>
          <query>index=_internal|stats count</query>
          <earliest>$time_token2.earliest$</earliest>
          <latest>$time_token2.latest$</latest>
        </search>
        <option name="drilldown">all</option>
        <option name="refresh.display">progressbar</option>
        <drilldown>
          <set token="form.hide_details">true</set>
        </drilldown>
      </single>
    </panel>
  </row>
  <row>
    <panel depends="$hide_details$">
      <table>
        <search>
          <query>index=_internal|stats count by sourcetype</query>
          <earliest>$time_token2.earliest$</earliest>
          <latest>$time_token2.latest$</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </table>
    </panel>
  </row>
</form>

 

---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

You have included both set and unset in the drill down and that might be the reason.

Assuming that you have another detailed panel which is visible only when you click on the single value panel, try below run anywhere example

<form>
  <label>test</label>
  <fieldset submitButton="false">
    <input type="time" token="time_token2">
      <label></label>
      <default>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </default>
    </input>
  </fieldset>
  <row>
    <panel>
      <input type="checkbox" token="hide_details">
        <label></label>
        <choice value="hide">Hide Details</choice>
        <change>
          <condition value="hide">
            <unset token="hide_details"></unset>
          </condition>
        </change>
        <delimiter> </delimiter>
      </input>
      <single>
        <search>
          <query>index=_internal|stats count</query>
          <earliest>$time_token2.earliest$</earliest>
          <latest>$time_token2.latest$</latest>
        </search>
        <option name="drilldown">all</option>
        <option name="refresh.display">progressbar</option>
        <drilldown>
          <set token="form.hide_details">true</set>
        </drilldown>
      </single>
    </panel>
  </row>
  <row>
    <panel depends="$hide_details$">
      <table>
        <search>
          <query>index=_internal|stats count by sourcetype</query>
          <earliest>$time_token2.earliest$</earliest>
          <latest>$time_token2.latest$</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </table>
    </panel>
  </row>
</form>

 

---
What goes around comes around. If it helps, hit it with Karma 🙂
Get Updates on the Splunk Community!

New in Observability - Improvements to Custom Metrics SLOs, Log Observer Connect & ...

The latest enhancements to the Splunk observability portfolio deliver improved SLO management accuracy, better ...

Improve Data Pipelines Using Splunk Data Management

  Register Now   This Tech Talk will explore the pipeline management offerings Edge Processor and Ingest ...

3-2-1 Go! How Fast Can You Debug Microservices with Observability Cloud?

Register Join this Tech Talk to learn how unique features like Service Centric Views, Tag Spotlight, and ...