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.



697
698
699
700
701
# File 'lib/fluent/plugin/in_tail.rb', line 697

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

Instance Method Details

#on_timerObject



703
704
705
706
707
708
# File 'lib/fluent/plugin/in_tail.rb', line 703

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