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!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...