logstash-output-kafka 3.0.0.beta1 → 3.0.0.beta2

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: 4566180256b76a147bc313ba93a53ea87f0dd6b5
4
- data.tar.gz: 01199234963282f640588f6e13ca5fa725d18313
3
+ metadata.gz: b76080c2f6518c545f5bd0d1aa7b57819e6efd78
4
+ data.tar.gz: b794c352eb5dc1cdf22ead5cd384753bf3a317e1
5
5
  SHA512:
6
- metadata.gz: f438f87c576958d1d7d1bcf1aeae82be404120b26e27cb64ccbd659b13fa149bfc88b74cfe75df0c9727b6f776bdf2ca3339c9ff0e7574027b54bc5a2d8318b8
7
- data.tar.gz: 1297979da8c0d1bcad6f739f5c6e7fb8d5af9cafb64c441ba08ec1dbf8c6ef194c7c231dec9d23a39fd371f162c9594faca3a5733c4497fdb68b2a6e98ef743b
6
+ metadata.gz: ff2c67cdb4d4e61c34926c48f3821e54b29194d0e06d149759fdde35055af29e35684c4b8c74183751dc83a269325bac3f3a896bf5ffe47bed9b9ad093cf0396
7
+ data.tar.gz: 3cc397e6a45c762a239260f326b5b7aeb63fc02c85b10275850437596b99b4e178e50dd58002d36ba0f50a6f2280dd6bda5a2e6cbc68613ad7a720291f07ff31
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.0.4
2
+ - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
3
+ # 2.0.3
4
+ - New dependency requirements for logstash-core for the 5.0 release
1
5
  ## 3.0.0.beta1
2
6
  - Note: breaking changes in this version, and not backward compatible with Kafka 0.8 broker.
3
7
  Please read carefully before installing
data/DEVELOPER.md CHANGED
@@ -46,6 +46,7 @@ the output configuration something like:
46
46
  codec => plain {
47
47
  format => "%{message}"
48
48
  }
49
+ topic_id => "my_topic_id"
49
50
  }
50
51
  }
51
52
 
data/README.md CHANGED
@@ -9,6 +9,8 @@ It is fully free and fully open source. The license is Apache 2.0, meaning you a
9
9
 
10
10
  ## Documentation
11
11
 
12
+ ### Note: 3.0.0 version of this plugin will only work with Kafka version 0.9 and is not backward compatible. Older versions (< 3.0.0) will work with Kafka 0.8.x and will be continued to be maintained
13
+
12
14
  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
15
 
14
16
  - For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
@@ -17,6 +17,7 @@ require 'logstash-output-kafka_jars.rb'
17
17
  # codec => plain {
18
18
  # format => "%{message}"
19
19
  # }
20
+ # topic_id => "mytopic"
20
21
  # }
21
22
  # }
22
23
  # For more information see http://kafka.apache.org/documentation.html#theproducer
@@ -1,8 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-kafka'
4
- s.version = '2.0.2'
5
- s.version = '3.0.0.beta1'
4
+ s.version = '3.0.0.beta2'
6
5
  s.licenses = ['Apache License (2.0)']
7
6
  s.summary = 'Output events to a Kafka topic. This uses the Kafka Producer API to write messages to a topic on the broker'
8
7
  s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
@@ -21,7 +20,7 @@ Gem::Specification.new do |s|
21
20
  s.metadata = { 'logstash_plugin' => 'true', 'group' => 'output'}
22
21
 
23
22
  # Gem dependencies
24
- s.add_runtime_dependency "logstash-core", ">= 2.0.0", "< 3.0.0"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", "~> 1.0"
25
24
  s.add_runtime_dependency 'logstash-codec-plain'
26
25
  s.add_runtime_dependency 'logstash-codec-json'
27
26
 
metadata CHANGED
@@ -1,35 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta1
4
+ version: 3.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-11 00:00:00.000000000 Z
11
+ date: 2016-03-24 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
- - - '>='
17
- - !ruby/object:Gem::Version
18
- version: 2.0.0
19
- - - <
16
+ - - ~>
20
17
  - !ruby/object:Gem::Version
21
- version: 3.0.0
22
- name: logstash-core
18
+ version: '1.0'
19
+ name: logstash-core-plugin-api
23
20
  prerelease: false
24
21
  type: :runtime
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - '>='
28
- - !ruby/object:Gem::Version
29
- version: 2.0.0
30
- - - <
24
+ - - ~>
31
25
  - !ruby/object:Gem::Version
32
- version: 3.0.0
26
+ version: '1.0'
33
27
  - !ruby/object:Gem::Dependency
34
28
  requirement: !ruby/object:Gem::Requirement
35
29
  requirements: