-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 to out_file plugin parameters #701
Add descriptions to out_file plugin parameters #701
Conversation
config_param :append, :bool, :default => false | ||
desc "Compress chunks with specified compression algorithm." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be
Compress flushed file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Document says "Compresses flushed files using gzip.".
Should I use this one or your suggestion?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. For this, docs should be fixed (not always gzip)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm..., OK I'll fix this line with your suggestion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, let me write more descriptive.
Currently, out_file
supports only gzip, so Compresses flushed files using gzip
is not wrong, but I think
Compress flushed file with specified compression algorithm.
is fine. In addition, documents should list what algorithms can be specified.
Could you use same words with doc? http://docs.fluentd.org/articles/out_file |
Add descriptions to out_file plugin parameters
Add descriptions to out_file plugin parameters
I tried to add descriptions in out_file plugin.
Related to #584.