Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
23 changes: 12 additions & 11 deletions docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|=======================================================================
|Setting |Input type|Required
| <<plugins-{type}s-{plugin}-batch_count>> |<<number,number>>|No
| <<plugins-{type}s-{plugin}-command_map>> |<<hash,hash>>|No
| <<plugins-{type}s-{plugin}-data_type>> |<<string,string>>, one of `["list", "channel", "pattern_channel"]`|Yes
| <<plugins-{type}s-{plugin}-db>> |<<number,number>>|No
| <<plugins-{type}s-{plugin}-host>> |<<string,string>>|No
Expand All @@ -53,7 +54,6 @@ This plugin supports the following configuration options plus the <<plugins-{typ
| <<plugins-{type}s-{plugin}-ssl>> |<<boolean,boolean>>|No
| <<plugins-{type}s-{plugin}-threads>> |<<number,number>>|No
| <<plugins-{type}s-{plugin}-timeout>> |<<number,number>>|No
| <<plugins-{type}s-{plugin}-command_map>> |<<hash,hash>>|No
|=======================================================================

Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
Expand 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 <<hash,hash>>
* 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`

Expand Down Expand Up @@ -155,16 +166,6 @@ Enable SSL support.

Initial connection timeout in seconds.

[id="plugins-{type}s-{plugin}-command_map"]
===== `command_map`

* Value type is <<hash,hash>>
* 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[]

Expand Down
2 changes: 1 addition & 1 deletion logstash-input-redis.gemspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down