logstash-output-redis 3.0.1 → 3.0.2
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/lib/logstash/outputs/redis.rb +2 -0
- data/logstash-output-redis.gemspec +2 -2
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ec297a211565f0c3305d9039e091c6e55d34a97
|
|
4
|
+
data.tar.gz: 5fe9fb271101637b9a8c352abad47e4d5c53234d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f97f395b58294b7aaa421e9996118adedddbc8273762802a6a010691f32c5b573adf0b4fb0a6c7cce845c9393a8d9828d0f954bd412cc191192c55ce0f54d08f
|
|
7
|
+
data.tar.gz: e9fa34b5f5f4d9d03d4ad15606fb848de6e3a27dc9b72b7134330f7477b3710c9ed0a7b2e7fc0a07cde8855c1a160fe302147d485bc8c30494e8bd2f1128d04c
|
data/CHANGELOG.md
CHANGED
|
@@ -26,6 +26,8 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
|
|
|
26
26
|
|
|
27
27
|
# The hostname(s) of your Redis server(s). Ports may be specified on any
|
|
28
28
|
# hostname, which will override the global port config.
|
|
29
|
+
# If the hosts list is an array, Logstash will pick one random host to connect to,
|
|
30
|
+
# if that host is disconnected it will then pick another.
|
|
29
31
|
#
|
|
30
32
|
# For example:
|
|
31
33
|
# [source,ruby]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-redis'
|
|
4
|
-
s.version = '3.0.
|
|
4
|
+
s.version = '3.0.2'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "This output will send events to a Redis queue using RPUSH"
|
|
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"
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
|
21
21
|
|
|
22
22
|
# Gem dependencies
|
|
23
|
-
s.add_runtime_dependency "logstash-core-plugin-api", "
|
|
23
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
|
24
24
|
|
|
25
25
|
s.add_runtime_dependency 'redis'
|
|
26
26
|
s.add_runtime_dependency 'stud'
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-redis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.60'
|
|
19
|
+
- - "<="
|
|
17
20
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '2.
|
|
21
|
+
version: '2.99'
|
|
19
22
|
name: logstash-core-plugin-api
|
|
20
23
|
prerelease: false
|
|
21
24
|
type: :runtime
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.60'
|
|
30
|
+
- - "<="
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '2.
|
|
32
|
+
version: '2.99'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
|
29
35
|
requirements:
|
|
@@ -146,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
152
|
version: '0'
|
|
147
153
|
requirements: []
|
|
148
154
|
rubyforge_project:
|
|
149
|
-
rubygems_version: 2.
|
|
155
|
+
rubygems_version: 2.6.3
|
|
150
156
|
signing_key:
|
|
151
157
|
specification_version: 4
|
|
152
158
|
summary: This output will send events to a Redis queue using RPUSH
|