logstash-input-s3sqs-navi 1.1.2

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 03aa3820c5b9010f97de608479bbbc040b12af0ddf5121e90ba56e7202e767ee
4
+ data.tar.gz: ac6d1ed80402cb814ed1c0b1ec7748663ff5ac5fd025896c9d41c3b7daf29821
5
+ SHA512:
6
+ metadata.gz: 9e60eb08217ea03a9c548ccfdb9568304937f550e32ba6b38b753811f9ab7821c1da5acbbd183bff726fa8a680d49479408176978eed602f51e3865e461e8614
7
+ data.tar.gz: c8f4adef92bf20a59ef4df3f6cda2e70d418e82a4d00b495c2a70491d3859dcb4c5b189653a00d18594ebc18eabf8366fa7839a873e04956daeb34fa6c4b90da
data/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ ## 1.1.1
2
+ - Added the ability to remove objects from S3 after processing.
3
+ - Workaround an issue with the Ruby autoload that causes "uninitialized constant `Aws::Client::Errors`" errors.
4
+
5
+ ## 1.1.0
6
+ - Logstash 5 compatibility
7
+
8
+ ## 1.0.3
9
+ - added some metadata to the event (bucket and object name as commited by joshuaspence)
10
+ - also try to unzip files ending with ".gz" (ALB logs are zipped but not marked with proper Content-Encoding)
11
+
12
+ ## 1.0.2
13
+ - fix for broken UTF-8 (so we won't lose a whole s3 log file because of a single invalid line, ruby's split will die on those)
14
+
15
+ ## 1.0.1
16
+ - same (because of screwed up rubygems.org release)
17
+
18
+ ## 1.0.0
19
+ - Initial Release
data/CONTRIBUTORS ADDED
@@ -0,0 +1,12 @@
1
+ The following is a list of people who have contributed ideas, code, bug
2
+ reports, or in general have helped logstash along its way.
3
+
4
+ Contributors:
5
+ * joshuaspence (event metadata)
6
+ * Heiko-san (initial contributor)
7
+ * logstash-input-sqs plugin as code base
8
+
9
+ Note: If you've sent us patches, bug reports, or otherwise contributed to
10
+ Logstash, and you aren't on the list above and want to be, please let us know
11
+ and we'll make sure you're here. Contributions from folks like you are what make
12
+ open source awesome.
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+ gem 'multiple_files_gzip_reader', :git => 'https://github.com/exAspArk/multiple_files_gzip_reader.git'
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2012–2015 Elasticsearch <http://www.elastic.co>
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
data/NOTICE.TXT ADDED
@@ -0,0 +1,5 @@
1
+ Elasticsearch
2
+ Copyright 2012-2015 Elasticsearch
3
+
4
+ This product includes software developed by The Apache Software
5
+ Foundation (http://www.apache.org/).
data/README.md ADDED
@@ -0,0 +1,86 @@
1
+ # Logstash Plugin
2
+
3
+ This is a plugin for [Logstash](https://github.com/elastic/logstash).
4
+
5
+ It is fully free and fully open source. The license is Apache 2.0.
6
+
7
+ ## Documentation
8
+
9
+ Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
10
+
11
+ - For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
12
+ - For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
13
+
14
+ ## Need Help?
15
+
16
+ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
17
+
18
+ ## Developing
19
+
20
+ ### 1. Plugin Developement and Testing
21
+
22
+ #### Code
23
+ - To get started, you'll need JRuby with the Bundler gem installed.
24
+
25
+ - Create a new plugin or clone and existing from the GitHub [logstash-plugins](https://github.com/logstash-plugins) organization. We also provide [example plugins](https://github.com/logstash-plugins?query=example).
26
+
27
+ - Install dependencies
28
+ ```sh
29
+ bundle install
30
+ ```
31
+
32
+ #### Test
33
+
34
+ - Update your dependencies
35
+
36
+ ```sh
37
+ bundle install
38
+ ```
39
+
40
+ - Run tests
41
+
42
+ ```sh
43
+ bundle exec rspec
44
+ ```
45
+
46
+ ### 2. Running your unpublished Plugin in Logstash
47
+
48
+ #### 2.1 Run in a local Logstash clone
49
+
50
+ - Edit Logstash `Gemfile` and add the local plugin path, for example:
51
+ ```ruby
52
+ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
53
+ ```
54
+ - Install plugin
55
+ ```sh
56
+ bin/plugin install --no-verify
57
+ ```
58
+ - Run Logstash with your plugin
59
+ ```sh
60
+ bin/logstash -e 'filter {awesome {}}'
61
+ ```
62
+ At this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.
63
+
64
+ #### 2.2 Run in an installed Logstash
65
+
66
+ You can use the same **2.1** method to run your plugin in an installed Logstash by editing its `Gemfile` and pointing the `:path` to your local plugin development directory or you can build the gem and install it using:
67
+
68
+ - Build your plugin gem
69
+ ```sh
70
+ gem build logstash-filter-awesome.gemspec
71
+ ```
72
+ - Install the plugin from the Logstash home
73
+ ```sh
74
+ bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
75
+ ```
76
+ - Start Logstash and proceed to test the plugin
77
+
78
+ ## Contributing
79
+
80
+ All contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.
81
+
82
+ Programming is not a required skill. Whatever you've seen about open source and maintainers or community members saying "send patches or die" - you will not see that here.
83
+
84
+ It is more important to the community that you are able to contribute.
85
+
86
+ For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
@@ -0,0 +1,242 @@
1
+ # encoding: utf-8
2
+ #
3
+ require "logstash/inputs/threadable"
4
+ require "logstash/namespace"
5
+ require "logstash/timestamp"
6
+ require "logstash/plugin_mixins/aws_config"
7
+ require "logstash/errors"
8
+ require "cgi/util"
9
+ require "multiple_files_gzip_reader"
10
+ require 'logstash/inputs/s3sqs/patch'
11
+
12
+ Aws.eager_autoload!
13
+
14
+
15
+ # Get logs from AWS s3 buckets as issued by an object-created event via sqs.
16
+ #
17
+ # This plugin is based on the logstash-input-sqs plugin but doesn't log the sqs event itself.
18
+ # Instead it assumes, that the event is an s3 object-created event and will then download
19
+ # and process the given file.
20
+ #
21
+ # Some issues of logstash-input-sqs, like logstash not shutting down properly, have been
22
+ # fixed for this plugin.
23
+ #
24
+ # In contrast to logstash-input-sqs this plugin uses the "Receive Message Wait Time"
25
+ # configured for the sqs queue in question, a good value will be something like 10 seconds
26
+ # to ensure a reasonable shutdown time of logstash.
27
+ # Also use a "Default Visibility Timeout" that is high enough for log files to be downloaded
28
+ # and processed (I think a good value should be 5-10 minutes for most use cases), the plugin will
29
+ # avoid removing the event from the queue if the associated log file couldn't be correctly
30
+ # passed to the processing level of logstash (e.g. downloaded content size doesn't match sqs event).
31
+ #
32
+ # This plugin is meant for high availability setups, in contrast to logstash-input-s3 you can safely
33
+ # use multiple logstash nodes, since the usage of sqs will ensure that each logfile is processed
34
+ # only once and no file will get lost on node failure or downscaling for auto-scaling groups.
35
+ # (You should use a "Message Retention Period" >= 4 days for your sqs to ensure you can survive
36
+ # a weekend of faulty log file processing)
37
+ # The plugin will not delete objects from s3 buckets, so make sure to have a reasonable "Lifecycle"
38
+ # configured for your buckets, which should keep the files at least "Message Retention Period" days.
39
+ #
40
+ # A typical setup will contain some s3 buckets containing elb, cloudtrail or other log files.
41
+ # These will be configured to send object-created events to a sqs queue, which will be configured
42
+ # as the source queue for this plugin.
43
+ # (The plugin supports gzipped content if it is marked with "contend-encoding: gzip" as it is the
44
+ # case for cloudtrail logs)
45
+ #
46
+ # The logstash node therefore must have sqs permissions + the permissions to download objects
47
+ # from the s3 buckets that send events to the queue.
48
+ # (If logstash nodes are running on EC2 you should use a ServerRole to provide permissions)
49
+ # [source,json]
50
+ # {
51
+ # "Version": "2012-10-17",
52
+ # "Statement": [
53
+ # {
54
+ # "Effect": "Allow",
55
+ # "Action": [
56
+ # "sqs:Get*",
57
+ # "sqs:List*",
58
+ # "sqs:ReceiveMessage",
59
+ # "sqs:ChangeMessageVisibility*",
60
+ # "sqs:DeleteMessage*"
61
+ # ],
62
+ # "Resource": [
63
+ # "arn:aws:sqs:us-east-1:123456789012:my-elb-log-queue"
64
+ # ]
65
+ # },
66
+ # {
67
+ # "Effect": "Allow",
68
+ # "Action": [
69
+ # "s3:Get*",
70
+ # "s3:List*",
71
+ # "s3:DeleteObject"
72
+ # ],
73
+ # "Resource": [
74
+ # "arn:aws:s3:::my-elb-logs",
75
+ # "arn:aws:s3:::my-elb-logs/*"
76
+ # ]
77
+ # }
78
+ # ]
79
+ # }
80
+ #
81
+ class LogStash::Inputs::S3SQS < LogStash::Inputs::Threadable
82
+ include LogStash::PluginMixins::AwsConfig::V2
83
+
84
+ BACKOFF_SLEEP_TIME = 1
85
+ BACKOFF_FACTOR = 2
86
+ MAX_TIME_BEFORE_GIVING_UP = 60
87
+ EVENT_SOURCE = 'aws:s3'
88
+ EVENT_TYPE = 'ObjectCreated'
89
+
90
+ config_name "s3sqs"
91
+
92
+ default :codec, "plain"
93
+
94
+ # Name of the SQS Queue to pull messages from. Note that this is just the name of the queue, not the URL or ARN.
95
+ config :queue, :validate => :string, :required => true
96
+
97
+ # Whether to delete files from S3 after processing.
98
+ config :delete_on_success, :validate => :boolean, :default => false
99
+
100
+ attr_reader :poller
101
+ attr_reader :s3
102
+
103
+ def register
104
+ require "aws-sdk"
105
+ @logger.info("Registering SQS input", :queue => @queue)
106
+ setup_queue
107
+ end
108
+
109
+ def setup_queue
110
+ aws_sqs_client = Aws::SQS::Client.new(aws_options_hash)
111
+ queue_url = aws_sqs_client.get_queue_url(:queue_name => @queue)[:queue_url]
112
+ @poller = Aws::SQS::QueuePoller.new(queue_url, :client => aws_sqs_client)
113
+ @s3 = Aws::S3::Client.new(aws_options_hash)
114
+ rescue Aws::SQS::Errors::ServiceError => e
115
+ @logger.error("Cannot establish connection to Amazon SQS", :error => e)
116
+ raise LogStash::ConfigurationError, "Verify the SQS queue name and your credentials"
117
+ end
118
+
119
+ def polling_options
120
+ {
121
+ # we will query 1 message at a time, so we can ensure correct error handling if we can't download a single file correctly
122
+ # (we will throw :skip_delete if download size isn't correct to process the event again later
123
+ # -> set a reasonable "Default Visibility Timeout" for your queue, so that there's enough time to process the log files)
124
+ :max_number_of_messages => 1,
125
+ # we will use the queue's setting, a good value is 10 seconds
126
+ # (to ensure fast logstash shutdown on the one hand and few api calls on the other hand)
127
+ :wait_time_seconds => nil,
128
+ }
129
+ end
130
+
131
+ def handle_message(message, queue)
132
+ hash = JSON.parse message.body
133
+ # there may be test events sent from the s3 bucket which won't contain a Records array,
134
+ # we will skip those events and remove them from queue
135
+ if hash['Records'] then
136
+ # typically there will be only 1 record per event, but since it is an array we will
137
+ # treat it as if there could be more records
138
+ hash['Records'].each do |record|
139
+ # in case there are any events with Records that aren't s3 object-created events and can't therefore be
140
+ # processed by this plugin, we will skip them and remove them from queue
141
+ if record['eventSource'] == EVENT_SOURCE and record['eventName'].start_with?(EVENT_TYPE) then
142
+ bucket = record['s3']['bucket']['name']
143
+ key = record['s3']['object']['key']
144
+ unescaped_key = CGI.unescape(key)
145
+
146
+ # try download and :skip_delete if it fails
147
+ begin
148
+ response = @s3.get_object(
149
+ bucket: bucket,
150
+ key: unescaped_key
151
+ )
152
+ rescue => e
153
+ @logger.warn("issuing :skip_delete on failed download", :bucket => bucket, :object => unescaped_key, :error => e)
154
+ throw :skip_delete
155
+ end
156
+
157
+ # verify downloaded content size
158
+ if response.content_length == record['s3']['object']['size'] then
159
+ body = response.body
160
+ # if necessary unzip
161
+ if response.content_encoding == "gzip" or unescaped_key.end_with?(".gz") then
162
+ begin
163
+ temp = MultipleFilesGzipReader.new(body)
164
+ rescue => e
165
+ @logger.warn("content is marked to be gzipped but can't unzip it, assuming plain text", :bucket => bucket, :object => unescaped_key, :error => e)
166
+ temp = body
167
+ end
168
+ body = temp
169
+ end
170
+ # process the plain text content
171
+ begin
172
+ lines = body.read.encode('UTF-8', 'binary', invalid: :replace, undef: :replace, replace: "\u2370").split(/\n/)
173
+ lines.each do |line|
174
+ @codec.decode(line) do |event|
175
+ decorate(event)
176
+
177
+ event.set('[@metadata][s3_bucket_name]', record['s3']['bucket']['name'])
178
+ event.set('[@metadata][s3_object_key]', record['s3']['object']['key'])
179
+
180
+ queue << event
181
+ end
182
+ end
183
+ rescue => e
184
+ @logger.warn("issuing :skip_delete on failed plain text processing", :bucket => bucket, :object => unescaped_key, :error => e)
185
+ throw :skip_delete
186
+ end
187
+
188
+ # Delete the files from S3
189
+ begin
190
+ @s3.delete_object(bucket: bucket, key: unescaped_key) if @delete_on_success
191
+ rescue => e
192
+ @logger.warn("Failed to delete S3 object", :bucket => bucket, :object => unescaped_key, :error => e)
193
+ end
194
+ # otherwise try again later
195
+ else
196
+ @logger.warn("issuing :skip_delete on wrong download content size", :bucket => bucket, :object => unescaped_key,
197
+ :download_size => response.content_length, :expected => record['s3']['object']['size'])
198
+ throw :skip_delete
199
+ end
200
+ end
201
+ end
202
+ end
203
+ end
204
+
205
+ def run(queue)
206
+ # ensure we can stop logstash correctly
207
+ poller.before_request do |stats|
208
+ if stop? then
209
+ @logger.warn("issuing :stop_polling on stop?", :queue => @queue)
210
+ # this can take up to "Receive Message Wait Time" (of the sqs queue) seconds to be recognized
211
+ throw :stop_polling
212
+ end
213
+ end
214
+ # poll a message and process it
215
+ run_with_backoff do
216
+ poller.poll(polling_options) do |message|
217
+ handle_message(message, queue)
218
+ end
219
+ end
220
+ end
221
+
222
+ private
223
+ # Runs an AWS request inside a Ruby block with an exponential backoff in case
224
+ # we experience a ServiceError.
225
+ #
226
+ # @param [Integer] max_time maximum amount of time to sleep before giving up.
227
+ # @param [Integer] sleep_time the initial amount of time to sleep before retrying.
228
+ # @param [Block] block Ruby code block to execute.
229
+ def run_with_backoff(max_time = MAX_TIME_BEFORE_GIVING_UP, sleep_time = BACKOFF_SLEEP_TIME, &block)
230
+ next_sleep = sleep_time
231
+ begin
232
+ block.call
233
+ next_sleep = sleep_time
234
+ rescue Aws::SQS::Errors::ServiceError => e
235
+ @logger.warn("Aws::SQS::Errors::ServiceError ... retrying SQS request with exponential backoff", :queue => @queue, :sleep_time => sleep_time, :error => e)
236
+ sleep(next_sleep)
237
+ next_sleep = next_sleep > max_time ? sleep_time : sleep_time * BACKOFF_FACTOR
238
+ retry
239
+ end
240
+ end
241
+
242
+ end # class
@@ -0,0 +1,22 @@
1
+ # This patch was stolen from logstash-plugins/logstash-output-s3#102.
2
+ #
3
+ # This patch is a workaround for a JRuby issue which has been fixed in JRuby
4
+ # 9000, but not in JRuby 1.7. See https://github.com/jruby/jruby/issues/3645
5
+ # and https://github.com/jruby/jruby/issues/3920. This is necessary because the
6
+ # `aws-sdk` is doing tricky name discovery to generate the correct error class.
7
+ #
8
+ # As per https://github.com/aws/aws-sdk-ruby/issues/1301#issuecomment-261115960,
9
+ # this patch may be short-lived anyway.
10
+ require 'aws-sdk'
11
+
12
+ begin
13
+ old_stderr = $stderr
14
+ $stderr = StringIO.new
15
+
16
+ module Aws
17
+ const_set(:S3, Aws::S3)
18
+ const_set(:SQS, Aws::SQS)
19
+ end
20
+ ensure
21
+ $stderr = old_stderr
22
+ end
@@ -0,0 +1,29 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'logstash-input-s3sqs-navi'
3
+ s.version = '1.1.2'
4
+ s.licenses = ['Apache License (2.0)']
5
+ s.summary = "Get logs from AWS s3 buckets as issued by an object-created event via sqs."
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"
7
+ s.authors = ["Heiko Finzel"]
8
+ s.email = 'hfi@boreus.de'
9
+ s.homepage = "https://www.boreus.de"
10
+ s.require_paths = ["lib"]
11
+
12
+ # Files
13
+ s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
+
15
+ # Tests
16
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
17
+
18
+ # Special flag to let us know this is actually a logstash plugin
19
+ s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
20
+
21
+ # Gem dependencies
22
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
23
+ s.add_dependency "multiple_files_gzip_reader"
24
+ s.add_runtime_dependency 'logstash-codec-json'
25
+ s.add_runtime_dependency "logstash-mixin-aws", ">= 1.0.0"
26
+
27
+ s.add_development_dependency 'logstash-devutils'
28
+ end
29
+
@@ -0,0 +1,9 @@
1
+ # encoding: utf-8
2
+ require "logstash/devutils/rspec/spec_helper"
3
+ require "logstash/inputs/s3sqs"
4
+
5
+ describe LogStash::Inputs::S3SQS do
6
+
7
+ true.should be_true
8
+
9
+ end
@@ -0,0 +1,2 @@
1
+ # encoding: utf-8
2
+ require "logstash/devutils/rspec/spec_helper"
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: logstash-input-s3sqs-navi
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Heiko Finzel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-05-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.60'
19
+ - - "<="
20
+ - !ruby/object:Gem::Version
21
+ version: '2.99'
22
+ name: logstash-core-plugin-api
23
+ prerelease: false
24
+ type: :runtime
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
31
+ - !ruby/object:Gem::Version
32
+ version: '2.99'
33
+ - !ruby/object:Gem::Dependency
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ name: multiple_files_gzip_reader
40
+ prerelease: false
41
+ type: :runtime
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ requirement: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ name: logstash-codec-json
54
+ prerelease: false
55
+ type: :runtime
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ - !ruby/object:Gem::Dependency
62
+ requirement: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 1.0.0
67
+ name: logstash-mixin-aws
68
+ prerelease: false
69
+ type: :runtime
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 1.0.0
75
+ - !ruby/object:Gem::Dependency
76
+ requirement: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ name: logstash-devutils
82
+ prerelease: false
83
+ type: :development
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ description: This gem is a logstash plugin required to be installed on top of the
90
+ Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not
91
+ a stand-alone program
92
+ email: hfi@boreus.de
93
+ executables: []
94
+ extensions: []
95
+ extra_rdoc_files: []
96
+ files:
97
+ - CHANGELOG.md
98
+ - CONTRIBUTORS
99
+ - Gemfile
100
+ - LICENSE
101
+ - NOTICE.TXT
102
+ - README.md
103
+ - lib/logstash/inputs/s3sqs.rb
104
+ - lib/logstash/inputs/s3sqs/patch.rb
105
+ - logstash-input-s3sqs.gemspec
106
+ - spec/inputs/s3sqs_spec.rb
107
+ - spec/spec_helper.rb
108
+ homepage: https://www.boreus.de
109
+ licenses:
110
+ - Apache License (2.0)
111
+ metadata:
112
+ logstash_plugin: 'true'
113
+ logstash_group: input
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ requirements: []
129
+ rubyforge_project:
130
+ rubygems_version: 2.6.13
131
+ signing_key:
132
+ specification_version: 4
133
+ summary: Get logs from AWS s3 buckets as issued by an object-created event via sqs.
134
+ test_files:
135
+ - spec/inputs/s3sqs_spec.rb
136
+ - spec/spec_helper.rb