Splunk Dashboard

Salesforce

How to dynamically generate token value based on the input entered in Splunk?

Sample Code: <input type="text" token="Degree"> <label>Instance</label> <default>ENTER_THE_DEGREE</default> <change> <condition match="like(lower($value$),&quot;cs%&quot;)"> <set token="DegreeFullForm">Computer Science - upper($value$)</set> </condition> <condition match="like(lower($value$),&quot;it%&quot;)"> <set token="DegreeFullFormegree">Information Technology - upper($value$)</set> </condition> </change> </input> For input token Degree, ....

Salesforce

How to show a panel only after selection of value from another panel in Splunk?

Use Drilldown Editor: Sample XML: <form> <label>Sample Explore</label> <search id="Event_transcript_search"> <query>PLEASE ENTER YOUR QUERY</query> <earliestTime>$earliest$</earliestTime> <latestTime>$latest$</latestTime> </search> <search id="Event_key_search"> <query> PLEASE ENTER YOUR QUERY </query> <earliestTime>$earliest$</earliestTime> <latestTime>$latest$</latestTime> </search> <fieldset submitButton="true" ....