logstash-output-kafka 7.0.6 → 7.0.7
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/LICENSE +1 -1
- data/docs/index.asciidoc +5 -20
- data/logstash-output-kafka.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: fcf8dd6cc2df25155912cd6ff2d2325cc5ba02519037fe6c4e98c017f0c83750
|
4
|
+
data.tar.gz: 2edc7ae6a0e2f5711a698c71ba1ab51ffad58c8b12096845c4f7c6b544ae9179
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44cbfbb687082c4f7a768aeaf4daed680b02d8597af0f525c2da140c7a2956ccaee958fe8afeed59dae94b35e965a16046754c323098723270699511e1368216
|
7
|
+
data.tar.gz: 11f14e8aec40126547ccbd26e6191a0299ba3e827bf8d1cebc76b211f186d6da50028bb1730e8b7d3cb871af49217e4dddb18598f991b9d6678fc35de3fb8655
|
data/CHANGELOG.md
CHANGED
data/LICENSE
CHANGED
data/docs/index.asciidoc
CHANGED
@@ -20,26 +20,11 @@ include::{include_path}/plugin_header.asciidoc[]
|
|
20
20
|
|
21
21
|
==== Description
|
22
22
|
|
23
|
-
Write events to a Kafka topic.
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
[options="header"]
|
30
|
-
|==========================================================
|
31
|
-
|Kafka Client Version |Logstash Version |Plugin Version |Why?
|
32
|
-
|0.8 |2.0.0 - 2.x.x |<3.0.0 |Legacy, 0.8 is still popular
|
33
|
-
|0.9 |2.0.0 - 2.3.x | 3.x.x |Works with the old Ruby Event API (`event['product']['price'] = 10`)
|
34
|
-
|0.9 |2.4.x - 5.x.x | 4.x.x |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
|
35
|
-
|0.10.0.x |2.4.x - 5.x.x | 5.x.x |Not compatible with the <= 0.9 broker
|
36
|
-
|0.10.1.x |2.4.x - 5.x.x | 6.x.x |
|
37
|
-
|0.11.0.0 |2.4.x - 5.x.x | 6.2.2 |Not compatible with the <= 0.9 broker
|
38
|
-
|==========================================================
|
39
|
-
|
40
|
-
NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
|
41
|
-
upgrade brokers before clients because brokers target backwards compatibility. For example, the 0.9 broker
|
42
|
-
is compatible with both the 0.8 consumer and 0.9 consumer APIs, but not the other way around.
|
23
|
+
Write events to a Kafka topic.
|
24
|
+
|
25
|
+
This plugin uses Kafka Client 1.0.0. For broker compatibility, see the official https://cwiki.apache.org/confluence/display/KAFKA/Compatibility+Matrix[Kafka compatibility reference].
|
26
|
+
|
27
|
+
If you're using a plugin version that was released after {version}, see the https://www.elastic.co/guide/en/logstash/master/plugins-inputs-kafka.html[latest plugin documentation] for updated information about Kafka compatibility. If you require features not yet available in this plugin (including client version upgrades), please file an issue with details about what you need.
|
43
28
|
|
44
29
|
This output supports connecting to Kafka over:
|
45
30
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-output-kafka'
|
4
|
-
s.version = '7.0.
|
4
|
+
s.version = '7.0.7'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Writes events to a Kafka topic"
|
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-output-kafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elasticsearch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|