Class: Fluent::Plugin::S3Output::TextCompressor
Instance Attribute Summary
Attributes inherited from Compressor
#buffer_type, #log
Instance Method Summary
collapse
Methods inherited from Compressor
#configure, #initialize
Instance Method Details
#compress(chunk, tmp) ⇒ Object
507
508
509
|
# File 'lib/fluent/plugin/out_s3.rb', line 507
def compress(chunk, tmp)
chunk.write_to(tmp)
end
|
#content_type ⇒ Object
503
504
505
|
# File 'lib/fluent/plugin/out_s3.rb', line 503
def content_type
'text/plain'.freeze
end
|
#ext ⇒ Object
499
500
501
|
# File 'lib/fluent/plugin/out_s3.rb', line 499
def ext
'txt'.freeze
end
|