Sha256: e7554e55b08e368259a96d9ecb00d28cc677b4aedbeb9e2cdb221d2f6b5d3500

Contents?: true

Size: 1.09 KB

Versions: 11

Compression:

Stored size: 1.09 KB

Contents

# encoding: utf-8

module FileWatch module TailMode module Handlers
  class Delete < Base
    DATA_LOSS_WARNING = "watched file path was deleted or rotated before all content was read, if the file is found again it will be read from the last position"
    def handle_specifically(watched_file)
      # TODO consider trying to find the renamed file - it will have the same inode.
      # Needs a rotate scheme rename hint from user e.g. "<name>-YYYY-MM-DD-N.<ext>" or "<name>.<ext>.N"
      # send the found content to the same listener (stream identity)
      logger.trace? && logger.trace(__method__.to_s, :path => watched_file.path, :watched_file => watched_file.details)
      if watched_file.bytes_unread > 0
        logger.warn(DATA_LOSS_WARNING, :path => watched_file.path, :unread_bytes => watched_file.bytes_unread)
      end
      watched_file.listener.deleted
      # no need to worry about data in the buffer
      # if found it will be associated by inode and read from last position
      sincedb_collection.watched_file_deleted(watched_file)
      watched_file.file_close
    end
  end
end end end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
logstash-input-file-4.4.6 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.4.5 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.4.4 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.4.3 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.4.2 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.4.1 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.4.0 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.3.1 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.3.0 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.2.4 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.2.3 lib/filewatch/tail_mode/handlers/delete.rb