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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e3e4321bea3cf53703a9cb4a730e72757c84293359a0b8bf627489900124994
4
- data.tar.gz: 404ca9d392bb01710e8f5617a4b583761667b7f8a933ec49a9fed5c4adc9a0ba
3
+ metadata.gz: ea500ac5d0edd2df4e5f91b2fe3c6791865225dc4a05797d05236d5faf79248a
4
+ data.tar.gz: a0481f4c2af7cddf76c1df6821dff4dba035b734d31350882f297bba712a24a2
5
5
  SHA512:
6
- metadata.gz: a5a2b7347085f5e45f4318b8deb23e87df06b7a6726ffd6c4d51740a9574c226b043ca8afec8a8c8a0d3918959d60d91797efd6da3add028891f1280846b7b67
7
- data.tar.gz: 2cd45bba305f53142589737821c8e99402dd020fa1c845bd7c4399406e6569dd82e38683c562a33c4aa203e39572a201d02085864aea7b1afc8a71f53d46b9d4
6
+ metadata.gz: 745bdf4dcbf707c02176f9bbba657c88d558d4e423c88fe2c9935bfbf91e6e8a4687a07e702e50c12a1c193508a61b02025001759f9b14bbaefa8154ab3f5b7a
7
+ data.tar.gz: e779e619a25b7f3f199d824f5f9d1d6f36217d70e404af632410ec224027e7e62fe90a3d501dcf5fffad61f11f97b0f3079b29b71e02b28d66fae5f0a01c3573
@@ -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
 
@@ -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 `redis\_type` is `list`, then we will BLPOP the
80
- key. If `redis\_type` is `channel`, then we will SUBSCRIBE to the key.
81
- If `redis\_type` is `pattern_channel`, then we will PSUBSCRIBE to the key.
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 `redis\_type` is `list`, then we will BLPOP the
52
- # key. If `redis\_type` is `channel`, then we will SUBSCRIBE to the key.
53
- # If `redis\_type` is `pattern_channel`, then we will PSUBSCRIBE to the key.
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.0'
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.0
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: 2018-09-27 00:00:00.000000000 Z
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