Dashboards & Visualizations

Why is the HTML panel not refreshing on the dashboard after adding auto-refresh for the whole page?

jeffbat
Path Finder

I have a dashboard for our SOC that is running and all of the panels work fine on it. but when we added an auto-refresh for the whole page we are finding that the HTML panel in the dashboard is not refreshing (the other panels which are just normal searches are refreshing fine).

This is the top of the XML code for the dashboard down through the panel which is not refreshing.

<dashboard refresh="300" script="access_center.js" stylesheet="hide_export_pdf.css">
  <label>SOC Home</label>
  <row>
    <panel>
      <html id="element1">
            <div class="key-indicators" data-group-name="soc_home"/>
        </html>
    </panel>
  </row>

This is in our Enterprise Security app and the top panel which is the one that is not refreshing is showing the Access/Network/Potential Data Loss/Malware Notables indicators.

I believe that these are getting populated and showing the script but not sure how to modify it so that it will refresh on a timer.

Any help would be appreciated.

Thanks.

0 Karma

deepashri_123
Motivator

Hey@jeffbat,

In HTML and JS,
you can reference this as such:

 var element2 = new ChartElement({
     "id": "element2",
     "resizable": true,
     "refresh.auto.interval": "30",
     "managerid": "search2",
     "el": $('#element2')
 }, {tokens: true}).render();

In Simple XML, you can reference this as such:

<panel>
   <chart>
     <title>Enable auto refresh of 30s</title>
     <searchString>index=_internal | top limit=3 sourcetype</searchString>
     <earliestTime>-60m@m</earliestTime>
     <latestTime>now</latestTime>
     <option name="refresh.auto.interval">30</option>
   </chart>
 </panel>

Let me know if this helps!!

0 Karma

chrismm662
Engager
      <option name="refresh.auto.interval">30</option>  

Is marked as deprecated ??

0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...