logstash-input-sqs 2.0.2 → 2.0.3

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: 2fdcf08ed78774b534d6a45a029ccd85f5b15729
4
- data.tar.gz: 25b82de6f90443104e2ef04c94235ed3f9113bea
3
+ metadata.gz: b9f0286202190470659484bd250f7792e5ec740a
4
+ data.tar.gz: 29fe7267657ea82134294e885c301e635df8cec6
5
5
  SHA512:
6
- metadata.gz: f67e521a4896ef9a9518179cad08eed9fac728893302a209eb20461aa1f2826dba0c94be9e8b4d8034d7aace5e9651283ee64a46b2958a3306743729a90a2048
7
- data.tar.gz: 2fa5ff1b860719e773e1467ce7d393c96f632f9ddd150fe6038bab373098aaf462ee06100c0f644b968c2a670e6c2690e73084ce46186ef32d3ddc29e0f6c178
6
+ metadata.gz: 7643eb09c9f60bfb2650f9d00fc9fd9a8bcba10c8a6abf592d5f25fcfa2a22034b1b6f114cca5add3a9e67d99d6256fb0aa1c23798700167b6a6011c48b83c8b
7
+ data.tar.gz: 659cf50dd554e0b5208fce38f5ec52fdb813c2ed2eb4615c9dd0ec32c574a14d374341de3b6011dfe2a83f154f4168db70c6fe26b80d78cdbc08a3b642bf7057
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## 2.0.3
2
+ - Fixes #22, wrong key use on the stats object
1
3
  ## 2.0.0
2
4
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
3
5
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Logstash Plugin
2
2
 
3
+ [![Build
4
+ Status](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Inputs/job/logstash-plugin-input-sqs-unit/badge/icon)](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Inputs/job/logstash-plugin-input-sqs-unit/)
5
+
3
6
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
4
7
 
5
8
  It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
@@ -147,7 +147,7 @@ class LogStash::Inputs::SQS < LogStash::Inputs::Threadable
147
147
  end
148
148
 
149
149
  @logger.debug("SQS Stats:", :request_count => stats.request_count,
150
- :messages_count => stats.message_count,
150
+ :received_message_count => stats.received_message_count,
151
151
  :last_message_received_at => stats.last_message_received_at) if @logger.debug?
152
152
  end
153
153
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-sqs'
3
- s.version = '2.0.2'
3
+ s.version = '2.0.3'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Pull events from an Amazon Web Services Simple Queue Service (SQS) queue."
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-14 00:00:00.000000000 Z
11
+ date: 2015-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement