Class: Fluent::Plugin::DockerStatsInput::TimerWatcher

Inherits:
Coolio::TimerWatcher
  • Object
show all
Defined in:
lib/fluent/plugin/in_docker_stats.rb

Instance Method Summary collapse

Constructor Details

#initialize(interval, repeat, log, &callback) ⇒ TimerWatcher

Returns a new instance of TimerWatcher.



120
121
122
123
124
# File 'lib/fluent/plugin/in_docker_stats.rb', line 120

def initialize(interval, repeat, log, &callback)
  @callback = callback
  @log = log
  super(interval, repeat)
end

Instance Method Details

#on_timerObject



126
127
128
129
130
131
# File 'lib/fluent/plugin/in_docker_stats.rb', line 126

def on_timer
  @callback.call
rescue
  @log.error $!.to_s
  @log.error_backtrace
end