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!

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

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