Dashboards & Visualizations

Is it possible to have dropdown populated with values from a search that uses a token from a previous text box?

ericrobinson
Path Finder

Basic problem is that I need to pull out valid reporting dates for each account.

If you can imagine a text box, and a drop-down.. The text box is looking for an account number. I then want splunk to run the populating search for the dropdown to get the valid reporting dates, using the account number entered in the text box. Is this possible?

Tags (2)

Patient
Path Finder

Hello,

If you are using splunk 6 or more, It's possible. You can add the token for the tex box to populating search for the dropdown. you can find the exemple below which have dropdown populated sourcetype with values from a search that uses a token from a previous text box for index:

<form>
  <label>Dashboard_Token</label>
  <fieldset submitButton="false" autoRun="true">
    <input type="text" token="index" searchWhenChanged="true">
      <label>entrer index</label>
    </input>
    <input type="dropdown" token="Sourcetype" searchWhenChanged="true">
      <default>*</default>
      <populatingSearch earliest="0" latest="" fieldForLabel="sourcetype" fieldForValue="sourcetype">index=$index$ | stats count by sourcetype</populatingSearch>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <searchString>index=$index$ OR index=_$index$ | table index sourcetype</searchString>
        <earliestTime/>
        <latestTime/>
      </table>
    </panel>
  </row>
</form>

You can copy and create a dashboard in the search app with a simple xml above to see more.

regard,
Patient

Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...