logstash-input-kafka 5.1.3 → 5.1.4
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/inputs/kafka.rb +0 -5
- data/logstash-input-kafka.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55e8135ee758f6822896fe75496f99d1f2702782
|
4
|
+
data.tar.gz: b6cda942dc0f5d129879efb1ad5a568b3353aeae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad0a3fd16cdaf547da5b8adb6cd8890474b60bdc3644233ace4fb4c8016b5b6fbbf3c187d1ac4beafaec6301e8313cb95685d5609d61092d4cea525305723d0b
|
7
|
+
data.tar.gz: 6e2347e9f29175dd565bc44389e7d6124a358f4be1209ccafcd39b7f87dac1fff5add835931ce32c9e096dab09b36abb47451e0f8569453ab10f5138e28eb1ea
|
data/CHANGELOG.md
CHANGED
@@ -204,11 +204,6 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
|
|
204
204
|
|
205
205
|
public
|
206
206
|
def register
|
207
|
-
# Logstash 2.4
|
208
|
-
if defined?(LogStash::Logger) && LogStash::Logger.respond_to?(:setup_log4j)
|
209
|
-
LogStash::Logger.setup_log4j(@logger)
|
210
|
-
end
|
211
|
-
|
212
207
|
@runner_threads = []
|
213
208
|
end # def register
|
214
209
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-input-kafka'
|
3
|
-
s.version = '5.1.
|
3
|
+
s.version = '5.1.4'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = 'This input will read events from a Kafka topic. It uses the high level consumer API provided by Kafka to read messages from the broker'
|
6
6
|
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"
|