I was new to Splunk dashboard studio, I need to auto-refresh my dashboard every 30secounds. below one is the code of my dashboard. can any one help in this?
Hi
here is instructions how to do it: https://docs.splunk.com/Documentation/Splunk/8.2.3/DashStudio/Default
Just open the code on GUI and add e.g.
"title": "<YOUR DASHBOARD NAME HERE>",
"defaults": {
"dataSources": {
"global": {
"options": {
"refresh": "5m",
"refreshType": "delay"
}
},
"ds.search": {
"options": {
Then back + save and it should work.
r. Ismo
As of 5/2/2023 you need to add
"defaults": { "dataSources": { "global": { "options": { "refresh": "1m", "refreshType": "delay" } }, "ds.search": { "options": { "refresh": "1m" } },
...