Dashboards & Visualizations

Dashboard auto refresh - best practice

InderSingh1
Explorer

Hi,

 

Does a dashboard with a setting to refresh every 2 mins mean, there will be a new search launched every 2 mins?

Isn't it a resource consumption, especially when all the users keep on setting their dashboards to refresh without any legit reason?

How can I search all the dashboards which are using this setting so that I can chase those users to remove the refresh setting if not really needed?

 

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

It depends on the dashboard, but most will launch new searches every interval.  An exception is for dashboard panels that use the loadjob command.  Yes, it's a resource consumption and (IMO) auto-refresh dashboards should be discouraged.

Try this search for locating dashboards that use auto-refresh:

| rest /servicesNS/-/-/data/ui/views 
| search eai:data="*<refresh>*" 
| rex field=eai:data max_match=0 "\s<refresh>(?<refresh>\w+)" 
| eval refresh=mvdedup(refresh) 
| table title author eai:acl.app eai:acl.owner refresh description
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

It depends on the dashboard, but most will launch new searches every interval.  An exception is for dashboard panels that use the loadjob command.  Yes, it's a resource consumption and (IMO) auto-refresh dashboards should be discouraged.

Try this search for locating dashboards that use auto-refresh:

| rest /servicesNS/-/-/data/ui/views 
| search eai:data="*<refresh>*" 
| rex field=eai:data max_match=0 "\s<refresh>(?<refresh>\w+)" 
| eval refresh=mvdedup(refresh) 
| table title author eai:acl.app eai:acl.owner refresh description
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...