Splunk Search

Need a dropdown and when i select one option only that related panels should display rest all panels should not display?

Vani_26
Path Finder

Need a dropdown and when i select one option only that related panels should display rest all panels should not display.
i have 7 panels(panel1, panel2.......panel7), i need to have one dropdown with 3 options(appID, appname, appdetails) options in it.
if i select appID from the dropdown,  3 panels should display(panel1, panel2 and panel3)
if i select appname from the dropdown, 2 panels should display(panel4, panel5)
if i select appdetails from the dropdown,  2 panels should display(panel6, panel7)

Please help me on this.

Labels (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

Use the 

<panel depends="$token$">

syntax. See here for documentation

https://docs.splunk.com/Documentation/Splunk/latest/Viz/PanelreferenceforSimplifiedXML

See this example and tailor it to your needs

<form>
  <label>dropdown</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="type" searchWhenChanged="true">
      <label>Type</label>
      <choice value="appId">appID</choice>
      <choice value="appname">appname</choice>
      <choice value="appdetails">appdetails</choice>
      <change>
        <condition value="appId">
          <set token="appId_panel"></set>
          <unset token="appname_panel"></unset>
          <unset token="appdetails_panel"></unset>
        </condition>
        <condition value="appname">
          <set token="appname_panel"></set>
          <unset token="appId_panel"></unset>
          <unset token="appdetails_panel"></unset>
        </condition>
        <condition value="appdetails">
          <set token="appdetails_panel"></set>
          <unset token="appname_panel"></unset>
          <unset token="appId_panel"></unset>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel depends="$appId_panel$">
      <table>
        <search>
          <query>
          | makeresults 
          | eval panel="appId"
        </query>
        </search>
      </table>
    </panel>
    <panel depends="$appname_panel$">
      <table>
        <search>
          <query>
          | makeresults 
          | eval panel="appname"
        </query>
        </search>
      </table>
    </panel>
    <panel depends="$appdetails_panel$">
      <table>
        <search>
          <query>
          | makeresults 
          | eval panel="appdetails"
        </query>
        </search>
      </table>
    </panel>
  </row>
</form>

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

Use the 

<panel depends="$token$">

syntax. See here for documentation

https://docs.splunk.com/Documentation/Splunk/latest/Viz/PanelreferenceforSimplifiedXML

See this example and tailor it to your needs

<form>
  <label>dropdown</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="type" searchWhenChanged="true">
      <label>Type</label>
      <choice value="appId">appID</choice>
      <choice value="appname">appname</choice>
      <choice value="appdetails">appdetails</choice>
      <change>
        <condition value="appId">
          <set token="appId_panel"></set>
          <unset token="appname_panel"></unset>
          <unset token="appdetails_panel"></unset>
        </condition>
        <condition value="appname">
          <set token="appname_panel"></set>
          <unset token="appId_panel"></unset>
          <unset token="appdetails_panel"></unset>
        </condition>
        <condition value="appdetails">
          <set token="appdetails_panel"></set>
          <unset token="appname_panel"></unset>
          <unset token="appId_panel"></unset>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel depends="$appId_panel$">
      <table>
        <search>
          <query>
          | makeresults 
          | eval panel="appId"
        </query>
        </search>
      </table>
    </panel>
    <panel depends="$appname_panel$">
      <table>
        <search>
          <query>
          | makeresults 
          | eval panel="appname"
        </query>
        </search>
      </table>
    </panel>
    <panel depends="$appdetails_panel$">
      <table>
        <search>
          <query>
          | makeresults 
          | eval panel="appdetails"
        </query>
        </search>
      </table>
    </panel>
  </row>
</form>

Vani_26
Path Finder

@bowesmana , Excellent!!!!
It worked, thank you 

0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk, and empower your SOC to reach new heights! Duration: 1 hour  Prepare to ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...