logstash-output-kinesis-iot 0.0.1-java → 0.1.0-java
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/lib/logstash/outputs/kinesis-iot.rb +1 -2
- data/logstash-output-kinesis-iot.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8a6ba6f6855a661d1beaaeeb5adaf233d6676dd165254ac4c7a142668630144
|
4
|
+
data.tar.gz: d82c78271d0e377b0e0cb3713173135aca560af740b47176bb5667e290a8257e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fc5209b6a810acc45bb0a10e31bf97e73f49ec7c447411e7a0652530fe4bdca912513ec04371c9eaa4096b38d64e9418e70b5e727b416ddc91bb6312488733f
|
7
|
+
data.tar.gz: 908b6d4a53cd805f228a7abab3a843e60687e008ed815ea1733d0d67497120ae39a42da07942ecbbd1847e46e7d1969b72919b214eafe40bd5ddcd062f858737
|
@@ -123,7 +123,6 @@ class LogStash::Outputs::KinesisIOT < LogStash::Outputs::Base
|
|
123
123
|
@creds = getIotAccess()
|
124
124
|
init_aws()
|
125
125
|
@codec.on_event(&method(:send_record))
|
126
|
-
@logger.error("Kinesis_IOT PLugin is empty")
|
127
126
|
end # def register
|
128
127
|
|
129
128
|
public
|
@@ -164,7 +163,7 @@ class LogStash::Outputs::KinesisIOT < LogStash::Outputs::Base
|
|
164
163
|
@logger.warn("Error writing event to Kinesis", :exception => e)
|
165
164
|
end
|
166
165
|
|
167
|
-
num = @producer.getOutstandingRecordsCount()
|
166
|
+
# num = @producer.getOutstandingRecordsCount()
|
168
167
|
# if num > @max_pending_records
|
169
168
|
# @logger.warn("Kinesis is too busy - blocking until things have cleared up")
|
170
169
|
# @producer.flushSync()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-kinesis-iot'
|
3
|
-
s.version = '0.0
|
3
|
+
s.version = '0.1.0'
|
4
4
|
s.licenses = ['Apache-2.0']
|
5
5
|
s.summary = "Sends data to a AWS kinesis, "
|
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"
|