Dashboards & Visualizations

can i change/show default dropdown when using drilldown

Purk9
Explorer

In my dashboard there's a panel thats changes a token when I use a drilldown.  The same token can also be changed by a global dropdown on the dashboard. Unfortunately the dropdown doesn't change visibly when i use the drilldown option. Is this possible? Maybe by refreshing only the dropdown while drilling down?

Labels (2)
0 Karma
1 Solution

renjith_nair
Legend

You should be able to do that with form.token

Try this run anywhere example. Select the dropdown for a value and click on the table for another drilldown value. It should reflect in the dropdown

 

<form>
  <label>DropDown</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="filter">
      <label>Filter</label>
      <choice value="A">A</choice>
      <choice value="B">B</choice>
      <choice value="C">C</choice>
      <default>A</default>
      <initialValue>A</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>FILTERS</title>
      <table>
        <search>
          <query>|makeresults|eval fields="A B C"|makemv fields|mvexpand fields</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">cell</option>
        <drilldown>
          <set token="filter">$row.fields$</set>
          <set token="form.filter">$row.fields$</set>
        </drilldown>
      </table>
    </panel>
    <panel>
      <title>Selected filter</title>
      <single>
        <search>
          <query>|makeresults|eval filter="$filter$"</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="showSparkline">0</option>
        <option name="showTrendIndicator">0</option>
      </single>
    </panel>
  </row>
</form>

 

 

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

View solution in original post

renjith_nair
Legend

You should be able to do that with form.token

Try this run anywhere example. Select the dropdown for a value and click on the table for another drilldown value. It should reflect in the dropdown

 

<form>
  <label>DropDown</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="filter">
      <label>Filter</label>
      <choice value="A">A</choice>
      <choice value="B">B</choice>
      <choice value="C">C</choice>
      <default>A</default>
      <initialValue>A</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>FILTERS</title>
      <table>
        <search>
          <query>|makeresults|eval fields="A B C"|makemv fields|mvexpand fields</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">cell</option>
        <drilldown>
          <set token="filter">$row.fields$</set>
          <set token="form.filter">$row.fields$</set>
        </drilldown>
      </table>
    </panel>
    <panel>
      <title>Selected filter</title>
      <single>
        <search>
          <query>|makeresults|eval filter="$filter$"</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="showSparkline">0</option>
        <option name="showTrendIndicator">0</option>
      </single>
    </panel>
  </row>
</form>

 

 

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

Purk9
Explorer

if you know it, it's so simple 🙂 Thanks!

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