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.



658
659
660
661
662
# File 'lib/fluent/plugin/in_tail.rb', line 658

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

Instance Method Details

#on_timerObject



664
665
666
667
668
669
# File 'lib/fluent/plugin/in_tail.rb', line 664

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