lib/logstash/outputs/redis.rb in logstash-output-redis-4.0.4 vs lib/logstash/outputs/redis.rb in logstash-output-redis-5.0.0
- old
+ new
@@ -18,13 +18,10 @@
config_name "redis"
default :codec, "json"
- # Name is used for logging in case there are multiple instances.
- config :name, :validate => :string, :obsolete => "This option is obsolete"
-
# The hostname(s) of your Redis server(s). Ports may be specified on any
# hostname, which will override the global port config.
# If the hosts list is an array, Logstash will pick one random host to connect to,
# if that host is disconnected it will then pick another.
#
@@ -47,11 +44,9 @@
# Redis initial connection timeout in seconds.
config :timeout, :validate => :number, :default => 5
# Password to authenticate with. There is no authentication by default.
config :password, :validate => :password
-
- config :queue, :validate => :string, :obsolete => "This option is obsolete. Use `key` and `data_type`."
# The name of a Redis list or channel. Dynamic names are
# valid here, for example `logstash-%{type}`.
config :key, :validate => :string, :required => true