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

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>

 

 

Happy Splunking!

View solution in original post

renjith_nair
SplunkTrust
SplunkTrust

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>

 

 

Happy Splunking!

Purk9
Explorer

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

0 Karma
Get Updates on the Splunk Community!

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

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...