Class: Fluent::S3Input::GzipExtractor

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

Instance Attribute Summary

Attributes inherited from Extractor

#log

Instance Method Summary collapse

Methods inherited from Extractor

#configure, #initialize

Constructor Details

This class inherits a constructor from Fluent::S3Input::Extractor

Instance Method Details

#content_typeObject



268
269
270
# File 'lib/fluent/plugin/in_s3.rb', line 268

def content_type
  'application/x-gzip'.freeze
end

#extObject



264
265
266
# File 'lib/fluent/plugin/in_s3.rb', line 264

def ext
  'gz'.freeze
end

#extract(io) ⇒ Object



272
273
274
275
276
# File 'lib/fluent/plugin/in_s3.rb', line 272

def extract(io)
  Zlib::GzipReader.wrap(io) do |gz|
    gz.read
  end
end