logstash-input-sqs_s3 1.1.13 → 1.1.14

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
  SHA256:
3
- metadata.gz: 38979276fe9dbd7f451d3836d7f2d6dc84987188df31e246e25adfe6b1a5b826
4
- data.tar.gz: ac0eaf21a90af6d50479b6cc68c05718696db5312ac1d2034e3876fbbe048099
3
+ metadata.gz: 7c7b1edc70467ae870ad4e0df52052b8611e8dd765d223fbf3e90eb9ec560d25
4
+ data.tar.gz: 7a01f9c7f382a57295698ecb3e9ec6e2b8d20fe6837b7d3c8466441e6445d4eb
5
5
  SHA512:
6
- metadata.gz: ec415788a4155790432e73d1a27f60db857b8847b110fc534e824ddae9f82142c4199f5c9526d79ad30511a19bccc317511fd462f61855db554921cf54f15e33
7
- data.tar.gz: c53bb19b0fbd95d74ca73b8bd1c0ea8d9c92b3bb27c3329848260a58421cb468f9c18a9ec182b90be3a4c0c06befaa387ea057cb8f4ac9997c86919788b4c65f
6
+ metadata.gz: e84502589a34f8bc1c1b97e71d023924dcd70e420f192abce805c454865c31e650600ce456101095579944b8ca1af5dd233ff57f67e8cf523ba73ec1f85dd964
7
+ data.tar.gz: 2a62a8259dad9ada95048376c614487780659ef78371ca7c71b8aaf60566f9d587713a7e4f683db39d50339cb1e82ee237fd76c7866fb8aa85e08de177b07c7c
@@ -1,3 +1,6 @@
1
+ ## 1.1.14
2
+ - Fixed compilation error
3
+
1
4
  ## 1.1.13
2
5
  - Added support for processing plain text json by removing whitespaces first
3
6
 
@@ -259,7 +259,7 @@ class LogStash::Inputs::SQSS3 < LogStash::Inputs::Threadable
259
259
  # Throttle requests is overloaded by big files
260
260
  if @current_load > @max_load_before_throttling/1000000 then
261
261
  throttle_seconds_sleep = @seconds_to_throttle * (@current_load / (@max_load_before_throttling.to_f/1000000)).floor
262
- @logger.warn("**********Current load has exceeded " + (@max_load_before_throttling.to_f/1000000).to_s + " MB. Load is currently: " + @current_load.to_s + ". Throttling back by " + throttle_seconds_sleep
262
+ @logger.warn("**********Current load has exceeded " + (@max_load_before_throttling.to_f/1000000).to_s + " MB. Load is currently: " + @current_load.to_s + ". Throttling back by " + throttle_seconds_sleep)
263
263
 
264
264
  if(throttle_seconds_sleep != 0) then
265
265
  sleep(throttle_seconds_sleep)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-sqs_s3'
3
- s.version = '1.1.13'
3
+ s.version = '1.1.14'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Get logs from AWS s3 buckets as issued by an object-created event via sqs."
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/plugin install gemname. This gem is not a stand-alone program. Full credit goes to Heiko Finzel. Republishing this gem to support Logstash 5."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-sqs_s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.13
4
+ version: 1.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Heiko Finzel