logstash-output-kafka 5.0.1 → 5.0.2

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: 42dfba1551d3cc447a57a1c0c6b8ce3b53ec64ee
4
- data.tar.gz: 719dcb2bd37781dac0f22b975670d026a9541db7
3
+ metadata.gz: 84f3d38e1d8b558732745712e7d52be852a0bc37
4
+ data.tar.gz: 15ad8fb42a18029c0d014a9792ad0db395982aad
5
5
  SHA512:
6
- metadata.gz: 2539b86d21b7120f906da7edf1f00ed588ff567bda246c903542c47bfd2388f833fc707bc640ce5596c8ab39ff4d19f11552d88c2e301398978b8a4ce174178b
7
- data.tar.gz: 1ee3bfa4246b67d21e1e1337f01786dc486e99e80febee03866a4996a9de618731930c7293adb6b789223e7755144bc28e6af9797e10e44d512b5d201a22c01b
6
+ metadata.gz: ef4c6a33fac857c07820529bfa75c275fdfbcb1e26093a3058400a1b82ffa8d68efc302dfcfcce1924224ccaf3da47fb007673bfe5a50109a45ff5ff4856c5d0
7
+ data.tar.gz: c82ac080baa3a8274726098c5b5d4dcc471960c5df4ce46ed01e8c1abd252294ee0b3419768b4dd825849e49ea10e6c1b44b26a6dc55c2ed1b70f4f5aa727b26
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 5.0.2
2
+ - Declare plugin as threadsafe
3
+
1
4
  ## 5.0.1
2
5
  - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
6
 
@@ -21,7 +21,7 @@ require 'logstash-output-kafka_jars.rb'
21
21
  # NOTE: It's a good idea to upgrade brokers before consumers/producers because brokers target backwards compatibility.
22
22
  # For example, the 0.9 broker will work with both the 0.8 consumer and 0.9 consumer APIs, but not the other way around.
23
23
  #
24
- # The only required configuration is the topic name. The default codec is json,
24
+ # The only required configuration is the topic_id. The default codec is json,
25
25
  # so events will be persisted on the broker in json format. If you select a codec of plain,
26
26
  # Logstash will encode your messages with not only the message but also with a timestamp and
27
27
  # hostname. If you do not want anything but your message passing through, you should make the output
@@ -39,6 +39,8 @@ require 'logstash-output-kafka_jars.rb'
39
39
  #
40
40
  # Kafka producer configuration: http://kafka.apache.org/documentation.html#newproducerconfigs
41
41
  class LogStash::Outputs::Kafka < LogStash::Outputs::Base
42
+ declare_threadsafe!
43
+
42
44
  config_name 'kafka'
43
45
 
44
46
  default :codec, 'plain'
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-kafka'
4
- s.version = '5.0.1'
4
+ s.version = '5.0.2'
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: 5.0.1
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-14 00:00:00.000000000 Z
11
+ date: 2016-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -156,7 +156,7 @@ requirements:
156
156
  - jar 'org.apache.kafka:kafka-clients', '0.10.0.0'
157
157
  - jar 'org.slf4j:slf4j-log4j12', '1.7.13'
158
158
  rubyforge_project:
159
- rubygems_version: 2.6.3
159
+ rubygems_version: 2.4.8
160
160
  signing_key:
161
161
  specification_version: 4
162
162
  summary: Output events to a Kafka topic. This uses the Kafka Producer API to write messages to a topic on the broker