<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: [Splunk Cloud] Refresh Whole Dashboard/Forum in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354548#M23124</link>
    <description>&lt;P&gt;If that is the case, I believe Splunk should list that as either known features or deprecated features, as they are removing a feature that was used in previous versions of the product.&lt;/P&gt;

&lt;P&gt;I appreciate your input.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Dec 2017 16:52:30 GMT</pubDate>
    <dc:creator>jsukenik</dc:creator>
    <dc:date>2017-12-21T16:52:30Z</dc:date>
    <item>
      <title>[Splunk Cloud] Refresh Whole Dashboard/Forum</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354543#M23119</link>
      <description>&lt;P&gt;I have a Splunk (6.4.0) instance where I run a dashboard/form that needs to refresh once a minute. When it refreshes, I would like the whole page to refresh (not the individual panels). &lt;/P&gt;

&lt;P&gt;This has been accomplished by using either of the following: &lt;BR /&gt;
&amp;lt; form refresh="60"&amp;gt; or &amp;lt; dashboard refresh="60"&amp;gt;&lt;/P&gt;

&lt;P&gt;However, I have a Splunk (6.6.0) instance and a Splunk Cloud (6.6.3.2) instance. Both of these, I try replicating the same process for both form and dashboard. However, it will only refresh each individual panel instead of the whole page.&lt;/P&gt;

&lt;P&gt;Is there a way to refresh the whole form/dashboard natively (through Simple XML) in these versions of Splunk (specifically Splunk Cloud)?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 20:58:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354543#M23119</guid>
      <dc:creator>jsukenik</dc:creator>
      <dc:date>2017-12-20T20:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: [Splunk Cloud] Refresh Whole Dashboard/Forum</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354544#M23120</link>
      <description>&lt;P&gt;Hey &lt;BR /&gt;
You can do that using jQuery!&lt;BR /&gt;
Just insert this code anywhere in the page:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;script type="text/javascript"&amp;gt;
  setTimeout(function(){
    location = ''
  },10000)
&amp;lt;/script&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here 10000ms=10s interval&lt;BR /&gt;
Let me know if it works!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 04:17:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354544#M23120</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2017-12-21T04:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: [Splunk Cloud] Refresh Whole Dashboard/Forum</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354545#M23121</link>
      <description>&lt;P&gt;@jsukenik, following refreshes every minute:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   setTimeout("location.reload();",60*1000);
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Specially for applications running on cloud, I think partial form submission through &lt;CODE&gt;&amp;lt;form refresh="60"&amp;gt;&lt;/CODE&gt; (using cache) is better than refreshing (pulling the dashboard from server). But it is your call as to what you want to implement.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 06:08:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354545#M23121</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-12-21T06:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: [Splunk Cloud] Refresh Whole Dashboard/Forum</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354546#M23122</link>
      <description>&lt;P&gt;It is very cumbersome/difficult to upload things to Splunk Cloud, such as the Javascript file that I would have to upload containing the code you suggested, and could be a hassle to update (unless if I am misunderstanding your post and that all of this can be done in the Simple XML).&lt;/P&gt;

&lt;P&gt;Ideally, I would like a solution that uses Simple XML or tools that are easy to use in Splunk Cloud.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 16:26:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354546#M23122</guid>
      <dc:creator>jsukenik</dc:creator>
      <dc:date>2017-12-21T16:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: [Splunk Cloud] Refresh Whole Dashboard/Forum</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354547#M23123</link>
      <description>&lt;P&gt;Hey I do not think there is any other way to do the same without javascript ! &lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 16:48:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354547#M23123</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2017-12-21T16:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: [Splunk Cloud] Refresh Whole Dashboard/Forum</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354548#M23124</link>
      <description>&lt;P&gt;If that is the case, I believe Splunk should list that as either known features or deprecated features, as they are removing a feature that was used in previous versions of the product.&lt;/P&gt;

&lt;P&gt;I appreciate your input.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2017 16:52:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Cloud-Refresh-Whole-Dashboard-Forum/m-p/354548#M23124</guid>
      <dc:creator>jsukenik</dc:creator>
      <dc:date>2017-12-21T16:52:30Z</dc:date>
    </item>
  </channel>
</rss>

