The dashboard auto-refresh feature helps you automatically update your dashboard with the latest data at an interval (e.g. every 10 mins), this is especially helpful when you want to project live dashboards on big monitors.
Since version 3.0, Holistics doesn’t support auto-refresh anymore. While the team is figuring out the best approach to bring the feature back, here’s a workaround that will get you the same outcome.
Navigate to a dashboard on Holistics, open your browser’s web console, and run the script below to automatically trigger the dashboard’s refresh button every 5 minutes
setInterval(
function(){
document.querySelector('.refresh .trigger .icon-wrapper').click();
},
300000 // milliseconds
)
Another approach is to install an auto-clicker browser extension or app to auto-click the refresh button at an interval.
Disclaimer: This is not an official approach from Holistics, fetching data constantly from your Data Warehouse can cost money and impact the performance. Holistics is not responsible for any costs caused by using this approach.