-
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 missing error class #952
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We can write description of plugin parameter as following: ``` class Fluent::SomeInput < Fluent::Input config_set_desc :tag, "This value is the tag assigned to the generated events." config_param :tag, :string end ```
We can write description of plugin parameter as following: ``` class Fluent::SomeInput < Fluent::Input desc "This value is the tag assigned to the generated events." config_param :tag, :string end ```
Signed-off-by: Eduardo Silva <eduardo@treasure-data.com>
Add Engine#msgpack_factory for v0.14 compatibility
Add descriptions to out_file plugin parameters
out_forward raises ZeroDivisionError when no <server> is available
…uration Add process_name parameter in system to change fluentd's process name
fix bug not to protect in-memory-buffer for multi thread emitting / run loop
…rd-transformer Add descriptions to filter_record_transformer
Add description to filter-stdout
Add description to log level
Add descriptions to in-exec
Add descriptions to in_forward
Add descriptions to in_tcp
Add description to out_copy plugin
Add descriptions buffer
Add descriptions to Fluent::SocketUtil::BaseInput
Fix DelayedForwarder#run and add unit test
Add descriptions to in_http
fluent/mixin should include automatically before requiring plugin.
Add missing require
fluent/filter should require in filter test driver.
…filter Add missing require
…version-number Add missing require
…mixin Add missing require
This is for input plugin test
…t-plugin-test Add missing require
Require fcntl library for daemonize. fix fluent#841
…command fluent-debug: Fix broken fluent-debug command
…command-v0.12 backport Fix broken fluent-debug command(fluent#891) to v0.12
* `Fluent::Log` * `Fluent::PluginLogger` * `Fluent::PluginLoggerMixin` See fluent#909
string-scrub 0.1.0 dropped today, and the strict ruby version constraint stops fluent from being installed on a modern ruby.
Fix string-scrub dependency on ruby > 2
- Drop oldest chunk from queue without writing to output when buffer queue is full - Add test
`String#scrub` has been added since Ruby 2.1. We don't need to install string-scrub gem when we use Ruby 2.1 or later.
Fix string scrub dependency
Add support for drop_oldest_chunk when buffer queue is full
backport: fix assigning an object with unconsistent API
backport: Add test for log related class and module
Fix logger on Fluent::StringUtil to use $log.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is extracted from #942.