Dashboards & Visualizations

How can I refresh my dashboard every five minutes?

jip31
Motivator

Hi

I want to refresh my Dashboard every five minutes
I use this code but it doesn't work.
Can someone tell me what is the problem?

  <fieldset autoRun="true" submitButton="true">
    <input type="time" token="field1">
      <label></label>
      <default>
        <earliest>-5m</earliest>
        <latest>now</latest>
      </default>
1 Solution

493669
Super Champion
<default>
         <earliest>-5m</earliest>
         <latest>now</latest>
       </default>

This will set default time for time range input as last 5 min and it is not for refreshing the dashboard.
try this:

<form refresh="120">
<fieldset autoRun="true" submitButton="true">
<input type="time" token="field1">
       <label></label>
       <default>
         <earliest>-5m</earliest>
         <latest>now</latest>
       </default>

View solution in original post

p_gurav
Champion

You can use below code :

<dashboard refresh="300">

00 seconds = 5 minutes

0 Karma

Taruchit
Contributor

Hi @p_gurav 

Thank you for sharing your answer. 

In my dashboard, the SPL uses saved search as well to get some data. Thus, when we use 

<dashboard refresh="300">

does it run the saved search at every refresh? Or does the saved search run independently as per its pre-defined schedule only?

Thank you

0 Karma

493669
Super Champion
<default>
         <earliest>-5m</earliest>
         <latest>now</latest>
       </default>

This will set default time for time range input as last 5 min and it is not for refreshing the dashboard.
try this:

<form refresh="120">
<fieldset autoRun="true" submitButton="true">
<input type="time" token="field1">
       <label></label>
       <default>
         <earliest>-5m</earliest>
         <latest>now</latest>
       </default>

nmcloota
Engager

It took me a while to figure out where the closing went, it would have been nice to have seen the full snippet. Thanks for the answer though, helped me!

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...