Dashboards & Visualizations

how to populate static dropdown based on another dropdown

Digvijay
Path Finder

Hi Team,

I have a dashboard in which I have 2 dropdowns. 

1 SELECT API :

- PARTY INTERACTION

-TICKET MANAGAMENT

 

2.SELECT OPERATION

-this second dropdown needs to be populated based on first one

a. If API = PARTY INTERACTION 

then values here -

<choice value="*">Alle</choice>
<choice value="LISTTROUBLETICKETS">LISTTROUBLETICKETS</choice>
<choice value="RETRIEVETROUBLETICKET">RETRIEVETROUBLETICKET</choice>
<choice value="CREATETICKET">CREATETICKET</choice>
<choice value="UPDATETICKET">UPDATETICKET</choice>
<choice value="RETRIEVETICKETTHEME">RETRIEVETICKETTHEME</choice>
<choice value="GETINBOXDETAILSFORUSER">GETINBOXDETAILSFORUSER</choice>

b.If API=TICKET MANAGAMENT

<choice value="*">Alle</choice>
<choice value="LISTPARTYINTERACTIONS">LISTPARTYINTERACTIONS</choice>
<choice value="RETRIEVEPARTYINTERACTION">RETRIEVEPARTYINTERACTION</choice>

Please help me to do this .

Digvijay_0-1629888600529.pngDigvijay_1-1629888632019.png

 

Labels (1)
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@Digvijay 

You should try something like this.

<fieldset submitButton="false">
    <input type="dropdown" token="tkn_API">
      <label>API</label>
      <choice value="PARTY INTERACTION">PARTY INTERACTION</choice>
      <choice value="TICKET MANAGAMENT">TICKET MANAGAMENT</choice>
    </input>
    <input type="dropdown" token="tkn_ OPERATION">
      <label>OPERATION</label>
      <fieldForLabel>OPERATION</fieldForLabel>
      <fieldForValue>OPERATION</fieldForValue>
      <search>
        <query>| makeresults | eval API="PARTY INTERACTION",OPERATION="LISTTROUBLETICKETS,RETRIEVETROUBLETICKE,CREATETICKET,UPDATETICKET,RETRIEVETICKETTHEME,GETINBOXDETAILSFORUSER
" | append [| makeresults | eval API="TICKET MANAGAMENT",OPERATION="LISTPARTYINTERACTIONS,RETRIEVEPARTYINTERACTION"] | eval OPERATION=split(OPERATION,",")
|mvexpand OPERATION| table API OPERATION  | search API="$tkn_API$"</query>
      </search>
    </input>
  </fieldset>

 

Thanks
KV
▄︻̷̿┻̿═━一   ?

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

View solution in original post

Digvijay
Path Finder

Thanks @kamlesh_vaghela  it worked for me.

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@Digvijay 

You should try something like this.

<fieldset submitButton="false">
    <input type="dropdown" token="tkn_API">
      <label>API</label>
      <choice value="PARTY INTERACTION">PARTY INTERACTION</choice>
      <choice value="TICKET MANAGAMENT">TICKET MANAGAMENT</choice>
    </input>
    <input type="dropdown" token="tkn_ OPERATION">
      <label>OPERATION</label>
      <fieldForLabel>OPERATION</fieldForLabel>
      <fieldForValue>OPERATION</fieldForValue>
      <search>
        <query>| makeresults | eval API="PARTY INTERACTION",OPERATION="LISTTROUBLETICKETS,RETRIEVETROUBLETICKE,CREATETICKET,UPDATETICKET,RETRIEVETICKETTHEME,GETINBOXDETAILSFORUSER
" | append [| makeresults | eval API="TICKET MANAGAMENT",OPERATION="LISTPARTYINTERACTIONS,RETRIEVEPARTYINTERACTION"] | eval OPERATION=split(OPERATION,",")
|mvexpand OPERATION| table API OPERATION  | search API="$tkn_API$"</query>
      </search>
    </input>
  </fieldset>

 

Thanks
KV
▄︻̷̿┻̿═━一   ?

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...