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!

Splunk MCP & Agentic AI: Machine Data Without Limits

  Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization ...

Finding Based Detections General Availability

Overview  We’ve come a long way, folks, but here in Enterprise Security 8.4 I’m happy to announce Finding ...

Get Your Hands Dirty (and Your Shoes Comfy): The Splunk Experience

Hands-On Learning and Technical Seminars  Sometimes, you just need to see the code. For those looking for a ...