mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Redis output docs
This commit is contained in:
parent
7a7bb93793
commit
f8dce8d5df
1 changed files with 7 additions and 7 deletions
|
@ -9,23 +9,23 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
|
|||
|
||||
config_name "redis"
|
||||
|
||||
# name is used for logging in case there are multiple instances
|
||||
# Name is used for logging in case there are multiple instances.
|
||||
config :name, :validate => :string, :default => 'default'
|
||||
|
||||
# the hostname of your redis server
|
||||
# The hostname of your redis server. Hostname is 127.0.0.1 by default.
|
||||
config :host, :validate => :string
|
||||
|
||||
# the port to connect on (optional)
|
||||
# The port to connect on. Port is 6379 by default.
|
||||
config :port, :validate => :number
|
||||
|
||||
# The redis database number
|
||||
# The redis database number. Db is 0 by default.
|
||||
config :db, :validate => :number
|
||||
|
||||
# Timeout of some kind? This isn't really documented in the Redis rubygem
|
||||
# docs...
|
||||
# Redis initial connection timeout in seconds. Timeout is 5 seconds by
|
||||
# default.
|
||||
config :timeout, :validate => :number
|
||||
|
||||
# Password to authenticate with
|
||||
# Password to authenticate with. There is no authentication by default.
|
||||
config :password, :validate => :password
|
||||
|
||||
# The name of the redis queue (we'll use RPUSH on this). Dynamic names are
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue