Dashboards & Visualizations

Change query dynamically based on dashboard

karthi25
Path Finder

I am having dropdown with values as below:

ec count
dc count
fc count 

Now I want to draw a line chart from this dropdown input. My Query may entirely different for each dropdown input, So I want to change the line chart query based on the dropdown input.
Kindly help me out to do it.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi karthi25,
insert the query parts in each value of your choice and then use token in your searches.
in other words something like this

<form>
  <label>Test</label>
  <fieldset submitButton="false">
    <input type="radio" token="option">
      <label>Option</label>
      <choice value="| stats count BY host">Option 1</choice>
      <choice value="| stats dc(host)">Option 2</choice>
      <choice value="| stats count">Option 3</choice>
      <initialValue>| stats count BY host</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>index=_internal $option$</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="count">20</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">none</option>
        <option name="percentagesRow">false</option>
        <option name="rowNumbers">false</option>
        <option name="totalsRow">false</option>
        <option name="wrap">true</option>
      </table>
    </panel>
  </row>
</form>

You can put in each token also the full search.

Bye.
Giuseppe

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...