logstash-input-redis 3.4.0 → 3.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/index.asciidoc +3 -3
- data/lib/logstash/inputs/redis.rb +3 -3
- data/logstash-input-redis.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea500ac5d0edd2df4e5f91b2fe3c6791865225dc4a05797d05236d5faf79248a
|
|
4
|
+
data.tar.gz: a0481f4c2af7cddf76c1df6821dff4dba035b734d31350882f297bba712a24a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 745bdf4dcbf707c02176f9bbba657c88d558d4e423c88fe2c9935bfbf91e6e8a4687a07e702e50c12a1c193508a61b02025001759f9b14bbaefa8154ab3f5b7a
|
|
7
|
+
data.tar.gz: e779e619a25b7f3f199d824f5f9d1d6f36217d70e404af632410ec224027e7e62fe90a3d501dcf5fffad61f11f97b0f3079b29b71e02b28d66fae5f0a01c3573
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.4.1
|
|
2
|
+
- Changed `redis_type` to `data_type` in .rb file [#70](https://github.com/logstash-plugins/logstash-input-redis/issues/70) and asciidoc file [#71](https://github.com/logstash-plugins/logstash-input-redis/issues/71)
|
|
3
|
+
|
|
1
4
|
## 3.4.0
|
|
2
5
|
- Added support for renamed redis commands [#29](https://github.com/logstash-plugins/logstash-input-redis/issues/29)
|
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -76,9 +76,9 @@ The number of events to return from Redis using EVAL.
|
|
|
76
76
|
* Value can be any of: `list`, `channel`, `pattern_channel`
|
|
77
77
|
* There is no default value for this setting.
|
|
78
78
|
|
|
79
|
-
Specify either list or channel. If `
|
|
80
|
-
key. If `
|
|
81
|
-
If `
|
|
79
|
+
Specify either list or channel. If `data_type` is `list`, then we will BLPOP the
|
|
80
|
+
key. If `data_type` is `channel`, then we will SUBSCRIBE to the key.
|
|
81
|
+
If `data_type` is `pattern_channel`, then we will PSUBSCRIBE to the key.
|
|
82
82
|
|
|
83
83
|
[id="plugins-{type}s-{plugin}-db"]
|
|
84
84
|
===== `db`
|
|
@@ -48,9 +48,9 @@ module LogStash module Inputs class Redis < LogStash::Inputs::Threadable
|
|
|
48
48
|
# The name of a Redis list or channel.
|
|
49
49
|
config :key, :validate => :string, :required => true
|
|
50
50
|
|
|
51
|
-
# Specify either list or channel. If `
|
|
52
|
-
# key. If `
|
|
53
|
-
# If `
|
|
51
|
+
# Specify either list or channel. If `data_type` is `list`, then we will BLPOP the
|
|
52
|
+
# key. If `data_type` is `channel`, then we will SUBSCRIBE to the key.
|
|
53
|
+
# If `data_type` is `pattern_channel`, then we will PSUBSCRIBE to the key.
|
|
54
54
|
config :data_type, :validate => [ "list", "channel", "pattern_channel" ], :required => true
|
|
55
55
|
|
|
56
56
|
# The number of events to return from Redis using EVAL.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-redis'
|
|
4
|
-
s.version = '3.4.
|
|
4
|
+
s.version = '3.4.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.4.
|
|
4
|
+
version: 3.4.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: 2019-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|