Dashboards & Visualizations

Time range picker doesn't work in dashboard

snigdhasaxena
Communicator

I have added time range picker in dashboard and set autorun= true
but when I change time range in my dashboard it doesn't rerun and populate the dashboard.

Code sample

test Data

<input type="time" token="Time Range Picker" searchWhenChanged="true">
  <label>Select time</label>
  <default>
    <earliest>-24h@h</earliest>
    <latest>now</latest>
  </default>
</input>
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi snigdhasaxena,
at first, I suggest to not use spaces in token's names, so use (e.g.) in input section:

 <input type="time" token="Time" searchWhenChanged="true">
   <label>Select time</label>
   <default>
     <earliest>-24h@h</earliest>
     <latest>now</latest>
   </default>
 </input>

Then in panels use :

<search>
   <query> my_search </query>
   <earliest>$Time.earliest$</earliest>
   <latest>$Time.latest$</latest>
</search>

Bye.
Giuseppe

kamlesh_vaghela
SplunkTrust
SplunkTrust

@snigdhasaxena

Here I'm assuming that you have used timerange picker in panel searches. Like

 <search>
          <query> MY SEARCH </query>
          <earliest>$earliest$</earliest>
          <latest>$latest$</latest>
        </search>

Still can you please share full dashboard XML? MAke sure you mask confidential values with a dummy value.

0 Karma
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...