diff --git a/public/js/icinga/loader.js b/public/js/icinga/loader.js index 96bf18a20..db06d5b44 100644 --- a/public/js/icinga/loader.js +++ b/public/js/icinga/loader.js @@ -354,7 +354,7 @@ }, filterAutorefreshingContainers: function () { - return $(this).data('icingaRefresh') > 0; + return $(this).data('icingaRefresh') > 0 && ! $(this).is('[data-suspend-autorefresh]'); }, autorefresh: function () { @@ -659,6 +659,10 @@ } } + if (req.autorefresh && req.$target.is('[data-suspend-autorefresh]')) { + return; + } + this.icinga.logger.debug( 'Got response for ', req.$target, ', URL was ' + req.url );