Dashboards & Visualizations

How to set up three dynamic dropdowns on dashboard in simple XML on Splunk 6.0.1?

gajananh999
Contributor

Dear All,

I am working dropdowns in my dashboard. I have country,state,city in my data. So my first drop down is country. Depending on selected country it should fill states from selected country in 2nd dropdown and depending on state selected it should fill city in 3rd dropdown. So may i know how to achieve this in splunk.

i am able to put dynamic values in dropdown. can anyone please help me here.

Thanks
Gajanan Hiroji

Tags (2)
1 Solution

somesoni2
SplunkTrust
SplunkTrust

Try this run anywhere sample (tested on 6.0.3, may work for 6.0.1 as well)

<form>
  <label>Cascading dropdown</label>
  <description/>
  <fieldset submitButton="false" autoRun="true">
        <input type="dropdown" token="varSourcetype" id="field1">       
          <label>SourceType :</label>
            <populatingSearch fieldForValue="sourcetype" fieldForLabel="sourcetype">
                <![CDATA[index=_internal earliest=-1h@h | top 1 sourcetype | table sourcetype ]]>
            </populatingSearch>
        </input>
    <input type="dropdown" token="varSource" id="field2">
            <label>Source :</label>         
            <populatingSearch fieldForValue="source" fieldForLabel="source">
                <![CDATA[index=_internal earliest=-1h@h sourcetype=$varSourcetype$ | stats count by source ]]>
            </populatingSearch>
        </input>
     <input type="dropdown" token="varComponent" id="field3">
            <label>Source :</label>         
            <populatingSearch fieldForValue="component" fieldForLabel="component">
                <![CDATA[index=_internal earliest=-1h@h sourcetype=$varSourcetype$ source=$varSource$| stats count by component ]]>
            </populatingSearch>
        </input>    
  </fieldset>

 <row>
    <table>
    <title>Volume distribution- sourcetype=$varSourcetype$ source=$varSource$ component=$varComponent$</title>
      <searchString>
        <![CDATA[index=_internal earliest=-1h@h sourcetype=$varSourcetype$ source=$varSource$
          component=$varComponent$| timechart span=5m count ]]>
      </searchString>
      <option name="count">10</option>
      <option name="previewResults">true</option>
      <option name="drilldown">none</option>
    </table>
  </row>
 </form>

View solution in original post

somesoni2
SplunkTrust
SplunkTrust

Try this run anywhere sample (tested on 6.0.3, may work for 6.0.1 as well)

<form>
  <label>Cascading dropdown</label>
  <description/>
  <fieldset submitButton="false" autoRun="true">
        <input type="dropdown" token="varSourcetype" id="field1">       
          <label>SourceType :</label>
            <populatingSearch fieldForValue="sourcetype" fieldForLabel="sourcetype">
                <![CDATA[index=_internal earliest=-1h@h | top 1 sourcetype | table sourcetype ]]>
            </populatingSearch>
        </input>
    <input type="dropdown" token="varSource" id="field2">
            <label>Source :</label>         
            <populatingSearch fieldForValue="source" fieldForLabel="source">
                <![CDATA[index=_internal earliest=-1h@h sourcetype=$varSourcetype$ | stats count by source ]]>
            </populatingSearch>
        </input>
     <input type="dropdown" token="varComponent" id="field3">
            <label>Source :</label>         
            <populatingSearch fieldForValue="component" fieldForLabel="component">
                <![CDATA[index=_internal earliest=-1h@h sourcetype=$varSourcetype$ source=$varSource$| stats count by component ]]>
            </populatingSearch>
        </input>    
  </fieldset>

 <row>
    <table>
    <title>Volume distribution- sourcetype=$varSourcetype$ source=$varSource$ component=$varComponent$</title>
      <searchString>
        <![CDATA[index=_internal earliest=-1h@h sourcetype=$varSourcetype$ source=$varSource$
          component=$varComponent$| timechart span=5m count ]]>
      </searchString>
      <option name="count">10</option>
      <option name="previewResults">true</option>
      <option name="drilldown">none</option>
    </table>
  </row>
 </form>

gajananh999
Contributor

Thanks that works for me

0 Karma

gajananh999
Contributor

6.0.1..... simple xml

0 Karma

somesoni2
SplunkTrust
SplunkTrust

Version of splunk you're using? simple xml or advanced xml?

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

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