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 🙂
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...