logstash-input-s3-sns-sqs 1.1.4 → 1.1.5

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: 4fa2bf47e17297deddd8e7d59521e9df1480aedb
4
- data.tar.gz: 70c8306bdeef99ca5e3ce98a43f15d6db0cca371
3
+ metadata.gz: 8b5cad63ad6ad5fe08a612d79f9f1f9bca0eb694
4
+ data.tar.gz: 7994ae0ca300a057e96ccd94bfcbcf40c4c1b792
5
5
  SHA512:
6
- metadata.gz: a3c2a94f24ffe5b6513bb74647c0b0b12d3e62097a09675b2afe1af7d266387e8b27046e94189cf4b74a0af0f3e2095a4c2f6e1bbf096ce3cb382bfefb001680
7
- data.tar.gz: c95bcc18de6838c79b74b22d997db71dab0ccea97cc42282f5ef446eb98ff2852ba6443903fa17b74d3874791f2f12d5e7046439ce486e0efe60146447005e01
6
+ metadata.gz: 97ece7e3fe47be904f90e0eb68b348ee2d3e66d2dba85bfa516ee5bd6d09673525c523e64179990d335d7343bf24dbd16c511d32bcfc97823af3ffa2bcbb957a
7
+ data.tar.gz: 058365db434b83b113afac30dbb3d6802638511cb59928c7e6ebeecc2a619687b843727b013e9d76582ac6396397db2b636286c8827495267c7cf88a4415cc37
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## 1.1.5
2
+ - Fix loglevel for some debug messages
1
3
  ## 1.1.4
2
4
  - Add Account-ID to config
3
5
  ## 1.1.2
@@ -135,7 +135,7 @@ class LogStash::Inputs::S3SNSSQS < LogStash::Inputs::Threadable
135
135
  # typically there will be only 1 record per event, but since it is an array we will
136
136
  # treat it as if there could be more records
137
137
  JSON.parse(hash['Message'])['Records'].each do |record|
138
- @logger.info("We found a record", :record => record)
138
+ @logger.debug("We found a record", :record => record)
139
139
  # in case there are any events with Records that aren't s3 object-created events and can't therefore be
140
140
  # processed by this plugin, we will skip them and remove them from queue
141
141
  if record['eventSource'] == EVENT_SOURCE and record['eventName'].start_with?(EVENT_TYPE) then
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-s3-sns-sqs'
3
- s.version = '1.1.4'
3
+ s.version = '1.1.5'
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 sns -> 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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-s3-sns-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Herweg