diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d34d5..65fc096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.5.1 + - [DOC] Reordered config option to alpha order [#79](https://github.com/logstash-plugins/logstash-input-redis/issues/79) + ## 3.5.0 - Updated redis client dependency to ~> 4 diff --git a/docs/index.asciidoc b/docs/index.asciidoc index bb7be49..cc8340e 100755 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -43,6 +43,7 @@ This plugin supports the following configuration options plus the <> |<>|No +| <> |<>|No | <> |<>, one of `["list", "channel", "pattern_channel"]`|Yes | <> |<>|No | <> |<>|No @@ -53,7 +54,6 @@ This plugin supports the following configuration options plus the <> |<>|No | <> |<>|No | <> |<>|No -| <> |<>|No |======================================================================= Also see <> for a list of options supported by all @@ -69,6 +69,17 @@ input plugins. The number of events to return from Redis using EVAL. +[id="plugins-{type}s-{plugin}-command_map"] +===== `command_map` + + * Value type is <> + * There is no default value for this setting. + * key is the default command name, value is the renamed command. + +Configure renamed redis commands in the form of "oldname" => "newname". +Redis allows for the renaming or disabling of commands in its protocol, see: https://redis.io/topics/security + + [id="plugins-{type}s-{plugin}-data_type"] ===== `data_type` @@ -155,16 +166,6 @@ Enable SSL support. Initial connection timeout in seconds. -[id="plugins-{type}s-{plugin}-command_map"] -===== `command_map` - - * Value type is <> - * There is no default value for this setting. - * key is the default command name, value is the renamed command. - -Configure renamed redis commands in the form of "oldname" => "newname". -Redis allows for the renaming or disabling of commands in its protocol, see: https://redis.io/topics/security - [id="plugins-{type}s-{plugin}-common-options"] include::{include_path}/{type}.asciidoc[] diff --git a/logstash-input-redis.gemspec b/logstash-input-redis.gemspec index cfb2408..e68f21a 100755 --- a/logstash-input-redis.gemspec +++ b/logstash-input-redis.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'logstash-input-redis' - s.version = '3.5.0' + s.version = '3.5.1' s.licenses = ['Apache License (2.0)'] s.summary = "Reads events from a Redis instance" s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"