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 to Fluent::SocketUtil::BaseInput #721

Merged
merged 1 commit into from
Nov 27, 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
5 changes: 5 additions & 0 deletions lib/fluent/plugin/socket_util.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,15 @@ def initialize
require 'fluent/parser'
end

desc 'Tag of output events.'
config_param :tag, :string
desc 'The format of the payload.'
config_param :format, :string
desc 'The port to listen to.'
config_param :port, :integer, :default => 5150
desc 'The bind address to listen to.'
config_param :bind, :string, :default => '0.0.0.0'
desc "The field name of the client's hostname."
config_param :source_host_key, :string, :default => nil
config_param :blocking_timeout, :time, :default => 0.5

Expand Down