Dashboards & Visualizations

Splunk 6 Simple xml dropdown, how to select first value in the list

somesoni2
Revered Legend

Hi All,

I have dashboard created in Splunk 6, simple xml. It has a dropdown input which is getting populated from a lookup file. I would like to select the first value in the dropdown, when the dashboard is loaded.

Any idea how to do the same? I am breaking my head for 3 hrs but got nothing.

Thanks in advance.

1 Solution

nfilippi_splunk
Splunk Employee
Splunk Employee

As of 6.0.2, you have the ability to configure the input to populate with the first selection on page load. It should look something like this:

 <input type="dropdown" token="sourcetype" searchWhenChanged="true">
      <label>Sourcetype</label>
      <selectFirstChoice>true</selectFirstChoice>
      <prefix>sourcetype="</prefix>
      <suffix>"</suffix>
      <choice value="*">ANY</choice>
      <populatingSearch fieldForLabel="sourcetype" fieldForValue="sourcetype" earliest="-24h" latest="now">index=_internal
| stats count by sourcetype
| sort asc sourcetype</populatingSearch>
</input>

View solution in original post

nfilippi_splunk
Splunk Employee
Splunk Employee

As of 6.0.2, you have the ability to configure the input to populate with the first selection on page load. It should look something like this:

 <input type="dropdown" token="sourcetype" searchWhenChanged="true">
      <label>Sourcetype</label>
      <selectFirstChoice>true</selectFirstChoice>
      <prefix>sourcetype="</prefix>
      <suffix>"</suffix>
      <choice value="*">ANY</choice>
      <populatingSearch fieldForLabel="sourcetype" fieldForValue="sourcetype" earliest="-24h" latest="now">index=_internal
| stats count by sourcetype
| sort asc sourcetype</populatingSearch>
</input>

somesoni2
Revered Legend

Thanks its working on 6.0.2 Splunk. Just had to remove the "*, ANY" part.

0 Karma

the_wolverine
Champion

Unfortunately it seems to work in version 5.0.3. It takes the first value of my input lookup file which is NOT what I want. I want it to just not run and allow the user to select to search. Guess I need to upgrade to 6 and you need to downgrade to 5 🙂

jtrujillo
Path Finder

Same issue, here is the code that I am using, and its not auto populating.

<input type="dropdown" token="host">
  <label>Host</label>
  <default>All Sites</default>
  <choice value="*">All Sites</choice>

  <populatingSearch fieldForValue="host" fieldForLabel="host">
    <![CDATA[| inputlookup current_connections_dropdown.csv
      | fields host
      | dedup host
      | sort host]]>
  </populatingSearch>
</input>
0 Karma

somesoni2
Revered Legend

Upgrade to 6.0.2 Maintenance version and then use options mentioned in the accepted answer. The property is not present in documentation though.

0 Karma
Get Updates on the Splunk Community!

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 ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...