I am trying to get multiple dashboards on my page to refresh at different intervals on a schdule
Example Dashboard is up and running 24x7 , refresh intervals are based on the page render time (I assume) X time from render is when they will refresh, works as stated.
I want the a single panel to refresh at 00:00 GMT no matter when the dashboard was rendered for the browser it was being displayed on.
I understand i could hit the display page at 00:00 GMT or have the browser auto refresh at that time in another script, I would rather do it in the code,
Splunk/Hunk 6.3.3
TIA
All it takes is a snippet of JS to grab the panel's SearchManager, wait for midnight, and hit its startSearch() method. The panel displaying the search results will then render them as they come in.
Thanks I will have to look into that