logstash-input-kafka 2.0.7 → 2.0.8
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/LICENSE +1 -1
- data/README.md +11 -1
- data/logstash-input-kafka.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 849a505f416ffb4c15a045d60efbeaf16e3e767d
|
|
4
|
+
data.tar.gz: cc23113a41e7dfe786e74d50d4faf6a814053f2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f58547973fa98449da0ec5210fcb22d294f22a0824872d81223ce06c98be419b8e97c59af7747fc94e186853147525b33b559361cc7569d00e3ae081d2bebd20
|
|
7
|
+
data.tar.gz: 8f4c9d196d1701b3c89d6b2b2bd27dac33dbab59f951d566139a897514459a0ceac436f836086245ce2002d4197ff4db7065548bc065407a23447183e0b88a61
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -55,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
|
|
|
55
55
|
```
|
|
56
56
|
- Install plugin
|
|
57
57
|
```sh
|
|
58
|
+
# Logstash 2.3 and higher
|
|
59
|
+
bin/logstash-plugin install --no-verify
|
|
60
|
+
|
|
61
|
+
# Prior to Logstash 2.3
|
|
58
62
|
bin/plugin install --no-verify
|
|
63
|
+
|
|
59
64
|
```
|
|
60
65
|
- Run Logstash with your plugin
|
|
61
66
|
```sh
|
|
@@ -73,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
|
|
|
73
78
|
```
|
|
74
79
|
- Install the plugin from the Logstash home
|
|
75
80
|
```sh
|
|
76
|
-
|
|
81
|
+
# Logstash 2.3 and higher
|
|
82
|
+
bin/logstash-plugin install --no-verify
|
|
83
|
+
|
|
84
|
+
# Prior to Logstash 2.3
|
|
85
|
+
bin/plugin install --no-verify
|
|
86
|
+
|
|
77
87
|
```
|
|
78
88
|
- Start Logstash and proceed to test the plugin
|
|
79
89
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-kafka'
|
|
4
|
-
s.version = '2.0.
|
|
4
|
+
s.version = '2.0.8'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = 'This input will read events from a Kafka topic. It uses the high level consumer API provided by Kafka to read messages from the broker'
|
|
7
|
-
s.description = "This gem is a
|
|
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"
|
|
8
8
|
s.authors = ['Elasticsearch']
|
|
9
9
|
s.email = 'info@elastic.co'
|
|
10
10
|
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
s.add_runtime_dependency 'logstash-codec-plain'
|
|
26
26
|
s.add_runtime_dependency 'stud', '>= 0.0.22', '< 0.1.0'
|
|
27
27
|
|
|
28
|
-
s.add_runtime_dependency 'jruby-kafka', '1.
|
|
28
|
+
s.add_runtime_dependency 'jruby-kafka', '1.5.0'
|
|
29
29
|
|
|
30
30
|
s.add_development_dependency 'logstash-devutils'
|
|
31
31
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-kafka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elasticsearch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logstash-core-plugin-api
|
|
@@ -78,12 +78,12 @@ dependencies:
|
|
|
78
78
|
requirements:
|
|
79
79
|
- - '='
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: 1.
|
|
81
|
+
version: 1.5.0
|
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
84
|
- - '='
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version: 1.
|
|
86
|
+
version: 1.5.0
|
|
87
87
|
prerelease: false
|
|
88
88
|
type: :runtime
|
|
89
89
|
- !ruby/object:Gem::Dependency
|
|
@@ -100,7 +100,7 @@ dependencies:
|
|
|
100
100
|
version: '0'
|
|
101
101
|
prerelease: false
|
|
102
102
|
type: :development
|
|
103
|
-
description: This gem is a
|
|
103
|
+
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
|
|
104
104
|
email: info@elastic.co
|
|
105
105
|
executables: []
|
|
106
106
|
extensions: []
|