Skip to content

Commit 78e9ad4

Browse files
jonaumanhush-hush
jonauman
authored andcommitted
Fixes issue #3700
re-instantiates the dogstream every 10 runs (approx. every 2 minutes)
1 parent 0960ba7 commit 78e9ad4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

checks/collector.py

+5
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,11 @@ def run(self, checksd=None, start_event=True, configs_reloaded=False):
355355
if self._ganglia is not None:
356356
payload['ganglia'] = self._ganglia.check(self.agentConfig)
357357
if self._dogstream is not None:
358+
# every 10 run (~2min) we reload the list of files watched by
359+
# dogstream
360+
if (self.run_count % 10) == 0:
361+
log.info("reloading list of files watched by Dogstreams")
362+
self._dogstream = Dogstreams.init(log, self.agentConfig)
358363
dogstreamData = self._dogstream.check(self.agentConfig)
359364
dogstreamEvents = dogstreamData.get('dogstreamEvents', None)
360365
if dogstreamEvents:

0 commit comments

Comments
 (0)