Hi,
How can I change the default option in the time range picker in the "Date range" panel from "since" to "between" for all users when they create Time Input to dashboards?
In the Splunk search default option "between" in the "Date range" and users want the same options to dashboards as it was in Splunk 7.0.1.
Hi @manabanana
Try like
<input type="time" id="time1">
<label>Time Between Example</label>
<default>
<earliest>0</earliest>
<latest></latest>
</default>
</input>
Does it mean edit XML code behind the current dashboard or any source code file?
If you want to set at app level then add the following entry in times.conf
[all_time]
label = All time
header_label = over all time
earliest_time = 0
latest_time = now
order = 500
yes, in the current dashboard.