Class: Fluent::Plugin::TailInput::StatWatcher
- Inherits:
-
Coolio::StatWatcher
- Object
- Coolio::StatWatcher
- Fluent::Plugin::TailInput::StatWatcher
- Defined in:
- lib/fluent/plugin/in_tail.rb
Instance Method Summary collapse
-
#initialize(path, log, &callback) ⇒ StatWatcher
constructor
A new instance of StatWatcher.
- #on_change(prev, cur) ⇒ Object
Constructor Details
#initialize(path, log, &callback) ⇒ StatWatcher
Returns a new instance of StatWatcher.
732 733 734 735 736 |
# File 'lib/fluent/plugin/in_tail.rb', line 732 def initialize(path, log, &callback) @callback = callback @log = log super(path) end |
Instance Method Details
#on_change(prev, cur) ⇒ Object
738 739 740 741 742 743 |
# File 'lib/fluent/plugin/in_tail.rb', line 738 def on_change(prev, cur) @callback.call rescue @log.error $!.to_s @log.error_backtrace end |