logstash-output-kafka 5.0.1 → 5.0.2
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/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/kafka.rb +3 -1
- data/logstash-output-kafka.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84f3d38e1d8b558732745712e7d52be852a0bc37
|
|
4
|
+
data.tar.gz: 15ad8fb42a18029c0d014a9792ad0db395982aad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef4c6a33fac857c07820529bfa75c275fdfbcb1e26093a3058400a1b82ffa8d68efc302dfcfcce1924224ccaf3da47fb007673bfe5a50109a45ff5ff4856c5d0
|
|
7
|
+
data.tar.gz: c82ac080baa3a8274726098c5b5d4dcc471960c5df4ce46ed01e8c1abd252294ee0b3419768b4dd825849e49ea10e6c1b44b26a6dc55c2ed1b70f4f5aa727b26
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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.
|
|
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.
|
|
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-
|
|
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.
|
|
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
|