logstash-output-kafka 6.1.0 → 6.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1dead8df45c0c2a4e381d7434aecf563c7b0fa4
4
- data.tar.gz: db1029642c471a2e8a086c3c640191bbef1e5434
3
+ metadata.gz: aa62c9fc897a164b77991393c6d64d0317e7a526
4
+ data.tar.gz: 3166208d5bef7a38d25ac018f527a9ee1350901a
5
5
  SHA512:
6
- metadata.gz: 84ac4e33c643dd958dc31232219c806b5e923103e57cda756792b389fcdb7fbc06ec715eead06ac4da781fefbc8c2caeede0e2b8500412511157cca654f79a6b
7
- data.tar.gz: fdd5a63002d004cd87476a3639cd35af40949e230791fd0924e5a45a89df80ebe3e7fef61bb0808d48928acff9e3a9db4e42cc496cb6fcc08fa008666eb2b4ed
6
+ metadata.gz: 294cc7c749e1aeb1cd49d53fdb5a0bac5ee74f4d95094fc24c9b8544413ca50e65f3194a9fd84e782167c889a11f256918fb5008588777729b2a6ecab0e5ee60
7
+ data.tar.gz: 3b4fb018b55bd4948f50b492df587c61fbf43cd7b8e72a59b01a240a26eb6f95a93803e3875accc5e88f33f6b5d166b95e75a4897772182ca3fbfc87c5ab55b1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 6.1.1
2
+ - Docs: Clarify compatibility matrix and remove it from the changelog to avoid duplication.
3
+
1
4
  ## 6.1.0
2
5
  - Add Kerberos authentication feature.
3
6
 
data/README.md CHANGED
@@ -6,19 +6,6 @@ This is a plugin for [Logstash](https://github.com/elastic/logstash).
6
6
 
7
7
  It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
8
8
 
9
- ## Kafka Compatibility
10
-
11
- Here's a table that describes the compatibility matrix for Kafka Broker support. Please remember that it is good advice to upgrade brokers before consumers/producers since brokers target backwards compatibility. The 0.9 broker will work with both the 0.8 consumer and 0.9 consumer APIs but not the other way around.
12
-
13
- | Kafka Broker Version | Logstash Version | Input Plugin | Output Plugin | Why? |
14
- |:---------------:|:------------------:|:--------------:|:---------------:|:------|
15
- | 0.8 | 2.0 - 2.x | < 3.0.0 | <3.0.0 | Legacy, 0.8 is still popular |
16
- | 0.9 | 2.0 - 2.3.x | 3.0.0 | 3.0.0 | Intermediate release before 0.10 that works with old Ruby Event API `[]` |
17
- | 0.9 | 2.4, 5.0 | 4.0.0 | 4.0.0 | Intermediate release before 0.10 with new get/set API |
18
- | 0.10.0.x | 2.4, 5.0 | 5.0.0 | 5.0.0 | Track latest Kafka release. Not compatible with 0.9 broker |
19
- | 0.10.1.x | 2.4, 5.0 | 6.0.0 | X | Track latest Kafka release. Not compatible with < 0.10.0.x broker |
20
-
21
-
22
9
  ## Documentation
23
10
 
24
11
  Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
@@ -13,10 +13,10 @@ require 'logstash-output-kafka_jars.rb'
13
13
  # |==========================================================
14
14
  # |Kafka Client Version |Logstash Version |Plugin Version |Security Features |Why?
15
15
  # |0.8 |2.0.0 - 2.x.x |<3.0.0 | |Legacy, 0.8 is still popular
16
- # |0.9 |2.0.0 - 2.3.x | 3.x.x |Basic Auth, SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
17
- # |0.9 |2.4.0 - 5.0.x | 4.x.x |Basic Auth, SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
18
- # |0.10.0.x |2.4.0 - 5.0.x | 5.x.x |Basic Auth, SSL |Not compatible with the <= 0.9 broker
19
- # |0.10.1.x |2.4.0 - 5.0.x | 6.x.x |Basic Auth, SSL |Not compatible with <= 0.10.0.x broker
16
+ # |0.9 |2.0.0 - 2.3.x | 3.x.x |SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
17
+ # |0.9 |2.4.x - 5.x.x | 4.x.x |SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
18
+ # |0.10.0.x |2.4.x - 5.x.x | 5.x.x |SSL |Not compatible with the <= 0.9 broker
19
+ # |0.10.1.x |2.4.x - 5.x.x | 6.x.x |SSL |Not compatible with <= 0.10.0.x broker
20
20
  # |==========================================================
21
21
  #
22
22
  # NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
@@ -24,10 +24,9 @@ require 'logstash-output-kafka_jars.rb'
24
24
  # is compatible with both the 0.8 consumer and 0.9 consumer APIs, but not the other way around.
25
25
  #
26
26
  # The only required configuration is the topic_id. The default codec is plain,
27
- # so events will be persisted on the broker in plain format. If you select a codec of plain,
28
- # Logstash will encode your messages with not only the message but also with a timestamp and
29
- # hostname. If you do not want anything but your message passing through, you should make the output
30
- # configuration something like:
27
+ # so events will be persisted on the broker in plain format. Logstash will encode your messages with not
28
+ # only the message but also with a timestamp and hostname. If you do not want anything but your message
29
+ # passing through, you should make the output configuration something like:
31
30
  # [source,ruby]
32
31
  # output {
33
32
  # kafka {
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-kafka'
4
- s.version = '6.1.0'
4
+ s.version = '6.1.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = 'Output events to a Kafka topic. This uses the Kafka Producer API to write messages to a topic on the broker'
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: 6.1.0
4
+ version: 6.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-18 00:00:00.000000000 Z
11
+ date: 2016-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement