Class: Fluent::Plugin::TailInput::TimerTrigger

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

Instance Method Summary collapse

Constructor Details

#initialize(interval, log, &callback) ⇒ TimerTrigger

Returns a new instance of TimerTrigger.



810
811
812
813
814
# File 'lib/fluent/plugin/in_tail.rb', line 810

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

Instance Method Details

#on_timerObject



816
817
818
819
820
821
# File 'lib/fluent/plugin/in_tail.rb', line 816

def on_timer
  @callback.call
rescue => e
  @log.error e.to_s
  @log.error_backtrace
end