logstash-output-sqs 4.0.0 → 4.0.1
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/sqs.rb +1 -5
- data/logstash-output-sqs.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50011fedd9648692ca0abd4a9d8b2ad6ad481bfb
|
|
4
|
+
data.tar.gz: 7c070bfcc27bb92c1098ff67f52ee6534e575621
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35e0ccae091d594155a183b5007bfe4080b5741489df1e92d4517b790c2f6d15db8878f40dda54e3c588d127f84befc99ca55e58980493ddf78d079b98bad8da
|
|
7
|
+
data.tar.gz: 16aa582081eb1681d775f2ca7d4b4356d9b7bfc587dd14b2f208e2c8aaf4ef498dcd46ba2014c3d7d87d21e836d181a16957e068818565363d282419fb2d38c6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 4.0.1
|
|
2
|
+
- Docs: Fix doc generation issue by removing extraneous comments.
|
|
3
|
+
|
|
1
4
|
## 4.0.0
|
|
2
5
|
- Add unit and integration tests.
|
|
3
6
|
- Adjust the sample IAM policy in the documentation, removing actions which are not actually required by the plugin. Specifically, the following actions are not required: `sqs:ChangeMessageVisibility`, `sqs:ChangeMessageVisibilityBatch`, `sqs:GetQueueAttributes` and `sqs:ListQueues`.
|
data/lib/logstash/outputs/sqs.rb
CHANGED
|
@@ -7,10 +7,6 @@ require 'logstash/outputs/base'
|
|
|
7
7
|
require 'logstash/outputs/sqs/patch'
|
|
8
8
|
require 'logstash/plugin_mixins/aws_config'
|
|
9
9
|
|
|
10
|
-
# Forcibly load all modules marked to be lazily loaded.
|
|
11
|
-
#
|
|
12
|
-
# It is recommended that this is called prior to launching threads. See
|
|
13
|
-
# https://aws.amazon.com/blogs/developer/threading-with-the-aws-sdk-for-ruby/.
|
|
14
10
|
Aws.eager_autoload!
|
|
15
11
|
|
|
16
12
|
# Push events to an Amazon Web Services (AWS) Simple Queue Service (SQS) queue.
|
|
@@ -48,7 +44,7 @@ Aws.eager_autoload!
|
|
|
48
44
|
# ]
|
|
49
45
|
# }
|
|
50
46
|
#
|
|
51
|
-
#
|
|
47
|
+
# ==== Batch Publishing
|
|
52
48
|
# This output publishes messages to SQS in batches in order to optimize event
|
|
53
49
|
# throughput and increase performance. This is done using the
|
|
54
50
|
# [`SendMessageBatch`](http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessageBatch.html)
|
data/logstash-output-sqs.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-sqs'
|
|
4
|
-
s.version = '4.0.
|
|
4
|
+
s.version = '4.0.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Push events to an Amazon Web Services Simple Queue Service (SQS) queue."
|
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-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-output-sqs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-02-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|