Sha256: ab5dfa325215d2ba89e11efb9772cab341561901943d1a30dcc5f74be6ee786d

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 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("delete", :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

3 entries across 3 versions & 1 rubygems

Version Path
logstash-input-file-4.2.2 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.2.1 lib/filewatch/tail_mode/handlers/delete.rb
logstash-input-file-4.2.0 lib/filewatch/tail_mode/handlers/delete.rb