logstash-input-redis 3.5.0 → 3.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c56550372bae6310a065fc203971e3657027b2c9e8ba64c6c254792478ef5a9
4
- data.tar.gz: 30553f06197c4f7bf7b3335b0febf5adbd9acadd1fe14ae9bea86aaa212f499d
3
+ metadata.gz: 6646d35aec0b2e0acfc9b3338b234aa7ac8d8398ab1a87af9daacaf442d9d03e
4
+ data.tar.gz: bfc62dc2c4c1c0834521d4aa733b43447b1809acb3b026ed3cadccf9310ce45c
5
5
  SHA512:
6
- metadata.gz: 30b08137de07406f7e4a2f80ecdb9c29a7b69138d8cf2ca50c3cb331389c7c5dea600836c39034a6d3ba558235d2fbcb53cb5ca72ec99646a9d3ac7dffb42252
7
- data.tar.gz: c6fc0402f3c1f7d192c6bc33d9a4b723aceefaf6e7a8e2870c628434a77f06e0a8aaa36cf99413e69e2a37f797be4c7c6811bdc8699cc4328de48277009d096a
6
+ metadata.gz: 3c248c7e46e3659ec0b676e0490f9d583eb72f3816a18882497e31fd462fc0524f58a5bdac985bb30b077d85e82e043ef580a6d399b5351b74238f3fe2a83536
7
+ data.tar.gz: ad36071f6c8a58354473a6176d02415a17f8df684a8f0bf066cf9a161fd99da9d0ad1cbace12ca5f1d30c91f51010c1bf7b2543e5ba025458315053e0288fb66
@@ -1,3 +1,6 @@
1
+ ## 3.5.1
2
+ - [DOC] Reordered config option to alpha order [#79](https://github.com/logstash-plugins/logstash-input-redis/issues/79)
3
+
1
4
  ## 3.5.0
2
5
  - Updated redis client dependency to ~> 4
3
6
 
@@ -43,6 +43,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
43
43
  |=======================================================================
44
44
  |Setting |Input type|Required
45
45
  | <<plugins-{type}s-{plugin}-batch_count>> |<<number,number>>|No
46
+ | <<plugins-{type}s-{plugin}-command_map>> |<<hash,hash>>|No
46
47
  | <<plugins-{type}s-{plugin}-data_type>> |<<string,string>>, one of `["list", "channel", "pattern_channel"]`|Yes
47
48
  | <<plugins-{type}s-{plugin}-db>> |<<number,number>>|No
48
49
  | <<plugins-{type}s-{plugin}-host>> |<<string,string>>|No
@@ -53,7 +54,6 @@ This plugin supports the following configuration options plus the <<plugins-{typ
53
54
  | <<plugins-{type}s-{plugin}-ssl>> |<<boolean,boolean>>|No
54
55
  | <<plugins-{type}s-{plugin}-threads>> |<<number,number>>|No
55
56
  | <<plugins-{type}s-{plugin}-timeout>> |<<number,number>>|No
56
- | <<plugins-{type}s-{plugin}-command_map>> |<<hash,hash>>|No
57
57
  |=======================================================================
58
58
 
59
59
  Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
@@ -69,6 +69,17 @@ input plugins.
69
69
 
70
70
  The number of events to return from Redis using EVAL.
71
71
 
72
+ [id="plugins-{type}s-{plugin}-command_map"]
73
+ ===== `command_map`
74
+
75
+ * Value type is <<hash,hash>>
76
+ * There is no default value for this setting.
77
+ * key is the default command name, value is the renamed command.
78
+
79
+ Configure renamed redis commands in the form of "oldname" => "newname".
80
+ Redis allows for the renaming or disabling of commands in its protocol, see: https://redis.io/topics/security
81
+
82
+
72
83
  [id="plugins-{type}s-{plugin}-data_type"]
73
84
  ===== `data_type`
74
85
 
@@ -155,16 +166,6 @@ Enable SSL support.
155
166
 
156
167
  Initial connection timeout in seconds.
157
168
 
158
- [id="plugins-{type}s-{plugin}-command_map"]
159
- ===== `command_map`
160
-
161
- * Value type is <<hash,hash>>
162
- * There is no default value for this setting.
163
- * key is the default command name, value is the renamed command.
164
-
165
- Configure renamed redis commands in the form of "oldname" => "newname".
166
- Redis allows for the renaming or disabling of commands in its protocol, see: https://redis.io/topics/security
167
-
168
169
  [id="plugins-{type}s-{plugin}-common-options"]
169
170
  include::{include_path}/{type}.asciidoc[]
170
171
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-redis'
4
- s.version = '3.5.0'
4
+ s.version = '3.5.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Reads events from a Redis instance"
7
7
  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"
@@ -1,4 +1,5 @@
1
1
  require "logstash/devutils/rspec/spec_helper"
2
+ require "logstash/devutils/rspec/shared_examples"
2
3
  require "redis"
3
4
  require "stud/try"
4
5
  require 'logstash/inputs/redis'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-20 00:00:00.000000000 Z
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement