Dashboards & Visualizations

Form Dropdown Input

jvmerilla
Path Finder

Hi,

I'm trying to create a dropdown form input named "Span" where the values are "Daily", "Weekly", and "Monthly".
The idea is that when I choose one of the values, the panels under it will be populated base on their "Daily", "Weekly" or "Monthly" count.

I don't know if I made myself clear but I hope someone can help me with this.

Thank you.

Tags (3)
0 Karma

cmerriman
Super Champion

try something like this (the panel is just a run-anywhere search to show how to use the token):

 <fieldset submitButton="true">
 <input type="dropdown" token="span">
      <label>Span</label>
      <choice value="1d">Daily</choice>
      <choice value="1w">Weekly</choice>
      <choice value="1mon">Monthly</choice>
      <default>1d</default>
    </input>
</fieldset>
<row>
    <panel>
      <table>
        <search>
          <query>index=_internal earliest=-2mon@mon|timechart span=$span$ count</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
0 Karma
Get Updates on the Splunk Community!

AI for AppInspect

We’re excited to announce two new updates to AppInspect designed to save you time and make the app approval ...

App Platform's 2025 Year in Review: A Year of Innovation, Growth, and Community

As we step into 2026, it’s the perfect moment to reflect on what an extraordinary year 2025 was for the Splunk ...

Operationalizing Entity Risk Score with Enterprise Security 8.3+

Overview Enterprise Security 8.3 introduces a powerful new feature called “Entity Risk Scoring” (ERS) for ...