Dashboards & Visualizations

Dashboard Auto-Refresh Switch

brajaram
Communicator

I know how to auto-refresh a dashboard, but is there a way to make a switch within a dashboard to toggle this on an off? I want this dashboard to periodically refresh, but if a user wants that functionality to stop, they should have a switch to do so.

Tags (3)
0 Karma

niketn
Legend

@brajaram have you tried the Slideshow app from Splunkbase?

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

sengaranand
New Member

You can use chrome browser multiple tabs to switch auto between them using powershell script.

while(1 -eq 1){
$wshell=New-Object -ComObject wscript.shell;
$wshell.AppActivate('Google Chrome');
Sleep 15;
$wshell.SendKeys('^{PGDN}');
}

you can change sleep time base on your requirement.

0 Karma

sengaranand
New Member

You can use chrome browser and multiple tab in that and it can be auto switch between the tabs using powershell script.
while(1 -eq 1){
$wshell=New-Object -ComObject wscript.shell;
$wshell.AppActivate('Google Chrome');
Sleep 15;
$wshell.SendKeys('^{PGDN}');
}

you can change the time 15 sec. to what you want for your dashboard to switch over.,You can the multiple chrome browsers tab and use Powershell script to switch between tabs.
while(1 -eq 1){
$wshell=New-Object -ComObject wscript.shell;
$wshell.AppActivate('Google Chrome');
Sleep 15;
$wshell.SendKeys('^{PGDN}');
}

0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...