I have few Dashboards in splunk
I want to play them on TV. Expectation is dashboard 1 will be shown then after 1 sec gap dashboard 2 will appear on screen then again pause for few seconds and dashboard 3 will come.
if not possible through splunk then how can I achieve this?
The way we've achieved this in the past is to use a "Tab Rotator" browser extension and then open the intended dashboards in different tabs of the browser, rotating between.
You will also need to ensure that the refresh on your dashboard searches is configured to refresh at the desire interval. For Dashboard Studio dashboard you can set the following within the "options" JSON object for each of your searches:
"refresh": "30s"
For XML dashboard set the refresh attribute in your <dashboard> or <form> stanza. See docs for more info
I hope this helps!
Will
Another possible way is to use a refreshing search to set up some tokens and use the depends attribute on the panels the display them in turn.
Yup. But if you have a big dashboard, especially powered by badly written searches, and a very short refresh time... That's not gonna end well 😉
@livehybrid's idea is one possible way. Another way would be to render one bigger dashboard and use some clever CSS/JS to slide the contents within the visible area.
The way we've achieved this in the past is to use a "Tab Rotator" browser extension and then open the intended dashboards in different tabs of the browser, rotating between.
You will also need to ensure that the refresh on your dashboard searches is configured to refresh at the desire interval. For Dashboard Studio dashboard you can set the following within the "options" JSON object for each of your searches:
"refresh": "30s"
For XML dashboard set the refresh attribute in your <dashboard> or <form> stanza. See docs for more info
I hope this helps!
Will