Actually the query is linked to shared time picker for whole dashboard. The xml looks like following: <row>
<panel>
<single>
<title>Call Rate</title>
<search>
<query>index=index1 sourcetype=sourcetype_name
| timechart span=1min sum(call_rate)</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
<refresh>5m</refresh>
<refreshType>delay</refreshType>
</search>
<option name="refresh.display">progressbar</option>
<option name="trellis.enabled">0</option>
<option name="useColors">1</option>
</single>
</panel>
</row> I want if I select any time from time range picker, 'latest' time should snap to beginning of the minute. How can I do it using tokens in 'earliest' and 'latest'? P.S: field1 is token for Time input of dashboard
... View more