logstash-input-redis 3.7.0 → 3.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/index.asciidoc +4 -1
- data/logstash-input-redis.gemspec +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a4a6ff31319272301133c28c4d64af5e146c457465f00e323b5146bacfb3283
|
4
|
+
data.tar.gz: c3fc86c94903ecdd46cdbc7b9de16f47dac61b6b3f4fee1ff6e63b32f8875087
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a807f70fae04f7b2663d94b296e440804b0cdbea7ed92768bbf10adc81355f130da7405a7e55006adc5c1beaabeedc322dd76b7a3ae0247159b8b55f9fed680
|
7
|
+
data.tar.gz: d666556e4ddb9e4d46dc8598c29cff4c7681973a07c33190e5972d1c2134105cb4933a4866d168f45f191ae7785040a175e04f773254a4f83b65fe83a6f2d513
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 3.7.1
|
2
|
+
- Add documentation to "threads" option [#95](https://github.com/logstash-plugins/logstash-input-redis/pull/95)
|
3
|
+
|
1
4
|
## 3.7.0
|
2
5
|
- Fix: better (Redis) exception handling [#89](https://github.com/logstash-plugins/logstash-input-redis/pull/89)
|
3
6
|
- Test: start running integration specs on CI
|
data/docs/index.asciidoc
CHANGED
@@ -156,7 +156,10 @@ Enable SSL support.
|
|
156
156
|
* Value type is <<number,number>>
|
157
157
|
* Default value is `1`
|
158
158
|
|
159
|
+
Number of instances of the input to start, each on its own thread.
|
160
|
+
Increase from one to improve concurrency in consuming messages from Redis.
|
159
161
|
|
162
|
+
NOTE: Increasing the number of threads when consuming from a channel will result in duplicate messages since a `SUBSCRIBE` delivers each message to all subscribers.
|
160
163
|
|
161
164
|
[id="plugins-{type}s-{plugin}-timeout"]
|
162
165
|
===== `timeout`
|
@@ -169,4 +172,4 @@ Initial connection timeout in seconds.
|
|
169
172
|
[id="plugins-{type}s-{plugin}-common-options"]
|
170
173
|
include::{include_path}/{type}.asciidoc[]
|
171
174
|
|
172
|
-
:default_codec!:
|
175
|
+
:default_codec!:
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-redis'
|
4
|
-
s.version = '3.7.
|
4
|
+
s.version = '3.7.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"
|
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.7.
|
4
|
+
version: 3.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,8 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
117
|
- !ruby/object:Gem::Version
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
|
-
|
121
|
-
rubygems_version: 2.6.13
|
120
|
+
rubygems_version: 3.2.33
|
122
121
|
signing_key:
|
123
122
|
specification_version: 4
|
124
123
|
summary: Reads events from a Redis instance
|