Class: Fluent::Plugin::TailInput::TailWatcher::LineBufferTimerFlusher

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(log, flush_interval, &flush_method) ⇒ LineBufferTimerFlusher

Returns a new instance of LineBufferTimerFlusher.



1373
1374
1375
1376
1377
1378
1379
# File 'lib/fluent/plugin/in_tail.rb', line 1373

def initialize(log, flush_interval, &flush_method)
  @log = log
  @flush_interval = flush_interval
  @flush_method = flush_method
  @start = nil
  @line_buffer = nil
end

Instance Attribute Details

#line_bufferObject

Returns the value of attribute line_buffer.



1371
1372
1373
# File 'lib/fluent/plugin/in_tail.rb', line 1371

def line_buffer
  @line_buffer
end

Instance Method Details

#close(tw) ⇒ Object



1393
1394
1395
1396
1397
1398
# File 'lib/fluent/plugin/in_tail.rb', line 1393

def close(tw)
  return unless @line_buffer

  @flush_method.call(tw, @line_buffer)
  @line_buffer = nil
end

#on_notify(tw) ⇒ Object



1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
# File 'lib/fluent/plugin/in_tail.rb', line 1381

def on_notify(tw)
  unless @start && @flush_method
    return
  end

  if Time.now - @start >= @flush_interval
    @flush_method.call(tw, @line_buffer) if @line_buffer
    @line_buffer = nil
    @start = nil
  end
end

#reset_timerObject



1400
1401
1402
1403
1404
# File 'lib/fluent/plugin/in_tail.rb', line 1400

def reset_timer
  return unless @flush_interval

  @start = Time.now
end