logstash-input-sqs_s3 1.1.0 → 1.1.1

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: 72ff31df6cfaaf5e8df2b6262766926a241c045839e1b510179371d5e2f11465
4
- data.tar.gz: 0b8051c8df8c33a3857410b5744b0ae800551365cae9a2c62bfdee1e3943a4be
3
+ metadata.gz: 92aedc8907953b85a96cfba10afe5c5a0b498a85b822e97d799582fb001d1e39
4
+ data.tar.gz: 1c485cde83ad7d59d931663c4331ed40742328569de7498efc547f769e8b502f
5
5
  SHA512:
6
- metadata.gz: 29fc47c267c16361e6e9ae542340ad885e05ed7c0d57aebafdec59a2ff88e53feb8d723527d034a42b4d656886044db0aaefcf7af863eee44aad75b906667b41
7
- data.tar.gz: a37a6157daaa826f13eb42275caaf19a3a329ac723e937efde929c1d379c16e641e861dbdd0b1c3bf6e6e2df5a4cdb3a8089bbf79a7cc226c9a5443679a5f924
6
+ metadata.gz: c9eef9ed7153832d3e534ec71763a77de4275133882da1f7ccd044dde470c9caeaecc5f667f9b08d6932f28d1e91bb7901e2db8bc9a893522f244e9c76c40761
7
+ data.tar.gz: 61ebd9633618d97867684135361eeaeb6288f87100fb2654b8cb3bfc8813b8bef1be7a1798f0349ec6c31671c92cd6d8e18f651d8bce9d5cd23e24e838c85d33
@@ -71,7 +71,7 @@ require "logstash/errors"
71
71
  # ]
72
72
  # }
73
73
  #
74
- class LogStash::Inputs::S3SQS < LogStash::Inputs::Threadable
74
+ class LogStash::Inputs::SQSS3 < LogStash::Inputs::Threadable
75
75
  include LogStash::PluginMixins::AwsConfig::V2
76
76
 
77
77
  BACKOFF_SLEEP_TIME = 1
@@ -80,7 +80,7 @@ class LogStash::Inputs::S3SQS < LogStash::Inputs::Threadable
80
80
  EVENT_SOURCE = 'aws:s3'
81
81
  EVENT_TYPE = 'ObjectCreated'
82
82
 
83
- config_name "s3sqs"
83
+ config_name "sqs_s3"
84
84
 
85
85
  default :codec, "plain"
86
86
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-sqs_s3'
3
- s.version = '1.1.0'
3
+ s.version = '1.1.1'
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."
@@ -0,0 +1,9 @@
1
+ # encoding: utf-8
2
+ require "logstash/devutils/rspec/spec_helper"
3
+ require "logstash/inputs/sqs_s3"
4
+
5
+ describe LogStash::Inputs::SQSS3 do
6
+
7
+ true.should be_true
8
+
9
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-sqs_s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Heiko Finzel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-02 00:00:00.000000000 Z
11
+ date: 2017-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -87,9 +87,10 @@ files:
87
87
  - LICENSE
88
88
  - NOTICE.TXT
89
89
  - README.md
90
- - lib/logstash/inputs/s3sqs.rb
90
+ - lib/logstash/inputs/sqs_s3.rb
91
91
  - logstash-input-sqs_s3.gemspec
92
92
  - spec/inputs/s3sqs_spec.rb
93
+ - spec/inputs/sqs_s3_spec.rb
93
94
  - spec/spec_helper.rb
94
95
  homepage: https://www.boreus.de
95
96
  licenses:
@@ -119,4 +120,5 @@ specification_version: 4
119
120
  summary: Get logs from AWS s3 buckets as issued by an object-created event via sqs.
120
121
  test_files:
121
122
  - spec/inputs/s3sqs_spec.rb
123
+ - spec/inputs/sqs_s3_spec.rb
122
124
  - spec/spec_helper.rb