Class: Fluent::Plugin::S3Input::GzipExtractor
  
  
  
  Instance Attribute Summary
  
  Attributes inherited from Extractor
  #log
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods inherited from Extractor
  #configure, #initialize
  
  
    Instance Method Details
    
      
  
  
    #content_type  ⇒ Object 
  
  
  
  
    | 
283
284
285 | # File 'lib/fluent/plugin/in_s3.rb', line 283
def content_type
  'application/x-gzip'.freeze
end | 
 
    
      
  
  
    #ext  ⇒ Object 
  
  
  
  
    | 
279
280
281 | # File 'lib/fluent/plugin/in_s3.rb', line 279
def ext
  'gz'.freeze
end | 
 
    
      
  
  
    | 
287
288
289
290
291 | # File 'lib/fluent/plugin/in_s3.rb', line 287
def (io)
  Zlib::GzipReader.wrap(io) do |gz|
    gz.read
  end
end |