I am new to splunk ,please help me to achieve this task .
In My dashboard I have added time range picker and It's working fine ,But Now I want to provide only four option to user for time.
my base search is here
<search id="base_search">
<query>index="testinput"|table Latitude,Longitude,Timestamp</query>
<earliest>$time.earliest$</earliest>
<latest>$time.latest$</latest>
</search>
and Dropdown for Time
<input type="time" token="time" searchWhenChanged="true">
<label>TIME</label>
<default>
<earliest>0</earliest>
<latest></latest>
</default>
</input>
... View more