Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add descriptions for TimeSlicedOutput #760

Merged
merged 1 commit into from
Dec 29, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/fluent/output.rb
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,11 @@ def initialize
#@ignore_old = false # TODO
end

desc 'The time format used as part of the file name.'
config_param :time_slice_format, :string, :default => '%Y%m%d'
desc 'The amount of time Fluentd will wait for old logs to arrive.'
config_param :time_slice_wait, :time, :default => 10*60
desc 'Parse the time value in the specified timezone'
config_param :timezone, :string, :default => nil
config_set_default :buffer_type, 'file' # overwrite default buffer_type
config_set_default :buffer_chunk_limit, 256*1024*1024 # overwrite default buffer_chunk_limit
Expand Down