<?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 Can you refresh a single module/chart without refreshing the whole dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16620#M448</link>
    <description>&lt;P&gt;Is it possible to refresh a single module on a dashboard?&lt;/P&gt;

&lt;P&gt;A client is interested in having a single dashboard with half static, backward looking charts, and half real-time, forward looking charts. They want to refresh the static ones every so often without losing the real-time graphs' history. &lt;/P&gt;</description>
    <pubDate>Thu, 01 Jul 2010 03:52:55 GMT</pubDate>
    <dc:creator>Jason</dc:creator>
    <dc:date>2010-07-01T03:52:55Z</dc:date>
    <item>
      <title>Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16620#M448</link>
      <description>&lt;P&gt;Is it possible to refresh a single module on a dashboard?&lt;/P&gt;

&lt;P&gt;A client is interested in having a single dashboard with half static, backward looking charts, and half real-time, forward looking charts. They want to refresh the static ones every so often without losing the real-time graphs' history. &lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 03:52:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16620#M448</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2010-07-01T03:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16621#M449</link>
      <description>&lt;P&gt;Yep, it can be done if you're using the advanced XML.  &lt;/P&gt;

&lt;P&gt;I cant think of an app offhand that does it but im sure there is one.  You just put a SubmitButton module into the XML as follows: &lt;/P&gt;

&lt;P&gt;Example:&lt;BR /&gt;
1) an ordinary dashboard panel in the Advanced XML, with no SubmitButton&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row1_col1" group="No SubmitButton.. :(" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;* | top sourcetype | fields - percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-30s&amp;lt;/param&amp;gt;
  &amp;lt;module name="HiddenChartFormatter"&amp;gt;
    &amp;lt;param name="charting.chart"&amp;gt;bar&amp;lt;/param&amp;gt;
    &amp;lt;param name="charting.primaryAxisTitle.text"&amp;gt;Sourcetype&amp;lt;/param&amp;gt;
    &amp;lt;param name="charting.secondaryAxisTitle.text"&amp;gt;## of events&amp;lt;/param&amp;gt;

    &amp;lt;module name="FlashChart"&amp;gt;
    &amp;lt;/module&amp;gt;

  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2) same panel, but with a SubmitButton &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row1_col1" group="with the SubmitButton :)" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;* | top sourcetype | fields - percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-30s&amp;lt;/param&amp;gt;
  &amp;lt;module name="HiddenChartFormatter"&amp;gt;
    &amp;lt;param name="charting.chart"&amp;gt;bar&amp;lt;/param&amp;gt;
    &amp;lt;param name="charting.primaryAxisTitle.text"&amp;gt;Sourcetype&amp;lt;/param&amp;gt;
    &amp;lt;param name="charting.secondaryAxisTitle.text"&amp;gt;## of events&amp;lt;/param&amp;gt;

    &amp;lt;module name="SubmitButton"&amp;gt;
      &amp;lt;param name="label"&amp;gt;Refresh&amp;lt;/param&amp;gt;

      &amp;lt;module name="FlashChart"&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Make sure that the module tag for the SubmitButton encloses the FlashChart module and also that it encloses any other modules that will be displaying data for this particular job -- most typically headers.   As is always the case with the containment of module tags, if someone isnt enclosed by a module, then they know nothing about that module.   So in this example if a SimpleResultsHeader is not enclosed by the SubmitButton, then it wont be refreshed when users click on it. &lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 05:04:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16621#M449</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-07-01T05:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16622#M450</link>
      <description>&lt;P&gt;Another option is to add a custom module to splunk that can refresh periodically. Let's call the module &lt;STRONG&gt;AutoRefresh&lt;/STRONG&gt;. To do this you have to create the following directory structure (in an app, eg. search or better a custom one):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$SPLUNK_HOME/etc/apps/someapp
| - appserver
   | - modules
      |- AutoRefresh
        | - AutoRefresh.conf
        | - AutoRefresh.css
        | - AutoRefresh.js
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;AutoRefresh.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[module]
className = Splunk.Module.AutoRefresh
superClass = Splunk.Module
description = This module refreshes it's descending modules periodically.

[param:invervalInSeconds]
required = True
label = This parameters defines the inverval in seconds in which the descending search modules should be reloaded.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;AutoRefresh.css:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;div.SplunkModule.AutoRefresh { display: none; margin: 0; padding: 0; }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;AutoRefresh.js:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Splunk.namespace("Module");
Splunk.Module.AutoRefresh = $.klass(Splunk.Module, {
    initialize: function($super, container) {
        $super(container);
        var interval = (+this._params['invervalInSeconds'])*1000;
        this._timer = setInterval(this.refresh.bind(this), interval);
    },
    refresh: function() {
        this.pushContextToChildren();
    }
});
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Once you've added those folders and files you have to restart Splunk. Then you'll be able to use the module in your advanced xml views like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... truncated ...

&amp;lt;module name="GenericHeader" layoutPanel="panel_row1_col1"&amp;gt;
    &amp;lt;param name="label"&amp;gt;Status&amp;lt;/param&amp;gt;
    &amp;lt;module name="AutoRefresh"&amp;gt;
        &amp;lt;param name="invervalInSeconds"&amp;gt;10&amp;lt;/param&amp;gt;
        &amp;lt;module name="HiddenSearch" layoutPanel="panel_row1_col1_grp1" autoRun="True"&amp;gt;
                    ...
        &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In this example all (search-)descendants of the AutoRefresh module would be refresh every 10 seconds. &lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 05:38:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16622#M450</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2010-07-01T05:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16623#M451</link>
      <description>&lt;P&gt;Any chance such a module will be built-in in the future?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 21:21:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16623#M451</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2010-07-01T21:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16624#M452</link>
      <description>&lt;P&gt;If an AutoRefresh modules contains another AutoRefresh module, is there a way so that parent auto refresh module does not refresh any module under a child AutoRefresh module?&lt;/P&gt;

&lt;P&gt;Very useful module though.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2012 18:02:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16624#M452</guid>
      <dc:creator>asingla</dc:creator>
      <dc:date>2012-04-27T18:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16625#M453</link>
      <description>&lt;P&gt;thanks @ziegfried for your premade module.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2012 07:54:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16625#M453</guid>
      <dc:creator>crt89</dc:creator>
      <dc:date>2012-07-19T07:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16626#M454</link>
      <description>&lt;P&gt;Excellent! thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2012 14:53:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16626#M454</guid>
      <dc:creator>sbrant_splunk</dc:creator>
      <dc:date>2012-08-17T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16627#M455</link>
      <description>&lt;P&gt;This seems like the most obvious place to post this.&lt;/P&gt;

&lt;P&gt;HiddenSavedSearches are not refreshed by AutoRefresh, this is because the search is defined when the page loads, and isn't changed by pushContextToChildren().&lt;/P&gt;

&lt;P&gt;This cobbled together Module, when used in place of HiddenSavedSearch works around that problem.&lt;BR /&gt;
Obviously you still need AutoRefresh upstream.&lt;/P&gt;

&lt;P&gt;Credit goes to sideview for the pointers along the way&lt;/P&gt;

&lt;P&gt;The controller module is a straight copy of HiddenSearchSwapper, as is the ajax call in the js file &lt;/P&gt;

&lt;P&gt;DynamicHiddenSavedSearch.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[module]
className = Splunk.Module.DynamicHiddenSavedSearch
superClass = Splunk.Module
description = Given a saved search name, finds the last run search for that saved search. It will update its context with the latest latest instance of the saved search when refreshed.

[param:savedSearch]
required = True
label = This is the name of the saved search to use when looking up a searches from the saved search's history or when dispatching a new search.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;DynamicHiddenSavedSearch.css&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;div.SplunkModule.HiddenSavedSearch {
    display: none;
    padding: 0;
    margin: 0;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;DynamicHiddenSavedSearch.html&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;%page args="module"/&amp;gt;
&amp;lt;%namespace name="lib" file="//lib.html" import="*"/&amp;gt;
% if module['params'].get('savedSearch'):
${lib.getSavedSearch(module, module['params'].get('savedSearch'), module['params'].get('useHistory'), APP['id'], cherrypy.session['user'].get('name'), VIEW['nativeObjectMode'])}
% endif
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;DynamicHiddenSavedSearch.js&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Splunk.Module.DynamicHiddenSavedSearch = $.klass(Splunk.Module, {

  savedSearch: null,
  initialize: function($super, container) {
    $super(container);
    this.childEnforcement = Splunk.Module.ALWAYS_REQUIRE;

    this.messenger = Splunk.Messenger.System.getInstance();
    this.hide(this.HIDDEN_MODULE_KEY);

    this._params['boundingGroup']   = this.getGroupName();
    this.sid = null;

    var hashParams = Splunk.util.queryStringToProp(Splunk.util.getHash());
    var meta = this.container.closest('.dashboardCell').find('.paneledit').attr("data-sequence");
    var key = 'panel_' + meta + '.sid';
    if (meta &amp;amp;&amp;amp; hashParams.hasOwnProperty(key)) {
       this.sid = hashParams[key];
       this.logger.info('Soft refresh; reuse job sid', this.sid);
       delete hashParams[key];
       window.location.hash = Splunk.util.propToQueryString(hashParams);
    }

  },

  getModifiedContext: function() {

    var context           = this.getContext();
    var jsonSearch        = this._getSavedSearch(this._params["savedSearch"]);
    jsonSearch["group"]   = this._params['boundingGroup'];
    var resurrectedSearch = Splunk.Search.resurrect(jsonSearch);

    if ( this._params['savedSearch'] != resurrectedSearch.getSavedSearchName() ) {
      this.messenger.send('error', 'splunk.search', _('Error resurrecting latest results for saved search ' + this._params["savedSearch"]));
      this.logger.debug('Failed to resurrect search object for ' + this._params["savedSearch"]);
      return context;
    } else {
      context.set("search",Splunk.Search.resurrect(jsonSearch));
      return context; 
    }

  },  

  _getSavedSearch: function(savedSearchName) {

    var newSearch;

    var targetURL  = Splunk.util.make_url(
                     'module',
                      Splunk.util.getConfigValue('SYSTEM_NAMESPACE'),
                      this.moduleType,
                      'render?savedSearchName=' + savedSearchName + '&amp;amp;client_app=search'
                    );

    $.ajax({

           async: false,
            type: 'GET',
             url: targetURL,
      beforeSend: function(xhr) {
                    xhr.setRequestHeader('X-Splunk-Module', this.moduleType);
                  },  

        complete: function(data) {
                    this.logger.debug('response OK from server');
                    newSearch = JSON.parse(data.responseText);
                  }.bind(this),

           error: function() {
                    this.messenger.send('error', 'splunk.search', _('Unable to get saved search from controller')); 
                    this.logger.debug('response ERROR from server');
                    return null;
                  }.bind(this)

    });   // end ajax requet

    return newSearch;

  }

});
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;DynamicHiddenSavedSearch.py&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;import cherrypy
import json
import logging
import splunk
import time
import controllers.module as module

logger = logging.getLogger('splunk.module.DynamicHiddenSavedSearch')

class DynamicHiddenSavedSearch(module.ModuleHandler):

    def generateResults(self, host_app=None, client_app=None, savedSearchName=None, useHistory=None):

        if savedSearchName: 
            jsonSearch = None
        owner = 'nobody'
            try: 
                savedSearchObject = splunk.search.getSavedSearch(label = savedSearchName, namespace = client_app, owner = owner)

                jsonSearch = splunk.appserver.mrsparkle.util.resurrectFromSavedSearch(
                    savedSearchObject = savedSearchObject,
                    hostPath = splunk.mergeHostPath(),
                    namespace = client_app,
                    owner = owner)

                job = splunk.search.getJobForSavedSearch(
                    savedSearchName,
                    useHistory="True", 
                    namespace=client_app,
                    owner=owner,
                    search='name=scheduler*')

                if (job):
                    jsonSearch["job"] = job.toJsonable(timeFormat='unix')

                return json.dumps(jsonSearch)

            except Exception, e:
                logger.exception(e)
                return ""
        else:
            logger.warn('savedSearchName was not passed from the caller')
            return ""
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Aug 2012 20:46:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16627#M455</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-08-23T20:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16628#M456</link>
      <description>&lt;P&gt;Note that this was only really needed before Splunk 4.3 introduced realtime charts' backfill functionality in this particular case.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2012 11:19:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16628#M456</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2012-11-14T11:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16629#M457</link>
      <description>&lt;P&gt;Is this still the best/only way to auto-refresh a saved search?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2013 07:57:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16629#M457</guid>
      <dc:creator>sc0tt</dc:creator>
      <dc:date>2013-09-23T07:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16630#M458</link>
      <description>&lt;P&gt;Thaks a lot for this module! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;However, it seems like it is not possible to have a $foo$ variable as the value for the "intervalInSeconds" parameter, or is it?&lt;/P&gt;

&lt;P&gt;I've even tried to put a ValueSetter between the Sideview Pulldown and this Autorefresh. Unfortunatley without any succes...&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2013 12:39:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16630#M458</guid>
      <dc:creator>anjafischer</dc:creator>
      <dc:date>2013-11-06T12:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16631#M459</link>
      <description>&lt;P&gt;How can I edit the dashboard code as advanced XML? I can only see simple XML when I try to edit the source? I am using Splunk 6.0 version. Any help would be helpful. Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2014 20:31:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16631#M459</guid>
      <dc:creator>karthikp1989</dc:creator>
      <dc:date>2014-07-22T20:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16632#M460</link>
      <description>&lt;P&gt;Please ask this as a new question - or search the existing questions - for best results.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2014 22:05:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16632#M460</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2014-07-22T22:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16633#M461</link>
      <description>&lt;P&gt;@karthikp1989, here are the docs pages for creating views &amp;amp; dashboards in Advanced XML: &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/AdvancedIntro"&gt;http://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/AdvancedIntro&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2014 15:54:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16633#M461</guid>
      <dc:creator>tlagatta_splunk</dc:creator>
      <dc:date>2014-12-01T15:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can you refresh a single module/chart without refreshing the whole dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16634#M462</link>
      <description>&lt;P&gt;so, how would I do this with Splunk 5? We have 5 real time charts and one chart not being able to be refreshed in real time (dbquery). I dont want to refresh the hole dashboard too, so how to refresh this particular chart every 5 minutes?&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 07:49:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Can-you-refresh-a-single-module-chart-without-refreshing-the/m-p/16634#M462</guid>
      <dc:creator>Mfreiberg</dc:creator>
      <dc:date>2015-05-08T07:49:51Z</dc:date>
    </item>
  </channel>
</rss>

