mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
- require a port
This commit is contained in:
parent
0b028b5224
commit
51b1b0b25b
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ class LogStash::Inputs::Udp < LogStash::Inputs::Base
|
|||
config :host, :validate => :string, :default => "0.0.0.0"
|
||||
|
||||
# The port to listen on. Remember that ports less than 1024 (privileged
|
||||
# ports) may require root to use.
|
||||
config :port, :validate => :number, :default => 9999
|
||||
# ports) may require root or elevated privileges to use.
|
||||
config :port, :validate => :number, :required => true
|
||||
|
||||
# Buffer size
|
||||
config :buffer_size, :validate => :number, :default => 8192
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue