logstash-output-s3 4.3.3 → 4.3.4
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 +4 -1
- data/docs/index.asciidoc +8 -3
- data/logstash-output-s3.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 841014c4e389a87dc3e63adb53303b5f6ea231221c45bc17b0eec5efb89a4bc6
|
|
4
|
+
data.tar.gz: a6f52f77844ce60a32a0fe05915e2865838a05505beee6ff095d402f2201d502
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 211e4bb8bef9cfa55e8af453d456fa4dbe4670559a747a625b0bf91344c8c475d0a8f8d4e00eba070c7d32f81b39cf7af2ab9a8f248a18042678722ea7393165
|
|
7
|
+
data.tar.gz: bd1f5c0e3f3337b20cdc1c4d9e835b24dda0882b0b8d2ad7d47a55fe9658c91e6137ca5869869e7dee90d0a506601e7d1557287c7c7aa833c44678bd2ebaae01
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
## 4.3.4
|
|
2
|
+
- [DOC] Added note about performance implications of interpolated strings in prefixes [#233](https://github.com/logstash-plugins/logstash-output-s3/pull/233)
|
|
3
|
+
|
|
1
4
|
## 4.3.3
|
|
2
|
-
- [DOC]
|
|
5
|
+
- [DOC] Updated links to use shared attributes [#230](https://github.com/logstash-plugins/logstash-output-s3/pull/230)
|
|
3
6
|
|
|
4
7
|
## 4.3.2
|
|
5
8
|
- [DOC] Added note that only AWS S3 is supported. No other S3 compatible storage solutions are supported. [#223](https://github.com/logstash-plugins/logstash-output-s3/pull/223)
|
data/docs/index.asciidoc
CHANGED
|
@@ -217,13 +217,18 @@ The endpoint should be an HTTP or HTTPS URL, e.g. https://example.com
|
|
|
217
217
|
* Value type is <<string,string>>
|
|
218
218
|
* Default value is `""`
|
|
219
219
|
|
|
220
|
-
Specify a prefix to the uploaded filename
|
|
220
|
+
Specify a prefix to the uploaded filename to simulate directories on S3.
|
|
221
221
|
Prefix does not require leading slash.
|
|
222
222
|
This option supports
|
|
223
223
|
{logstash-ref}/event-dependent-configuration.html#sprintf[Logstash
|
|
224
|
-
interpolation]
|
|
224
|
+
interpolation]. For example, files can be prefixed with the event date using
|
|
225
225
|
`prefix = "%{+YYYY}/%{+MM}/%{+dd}"`.
|
|
226
|
-
|
|
226
|
+
|
|
227
|
+
IMPORTANT: Take care when you are using interpolated strings in prefixes. This
|
|
228
|
+
has the potential to create large numbers of unique prefixes, causing large
|
|
229
|
+
numbers of in-progress uploads. This scenario may result in performance and
|
|
230
|
+
stability issues, which can be further exacerbated when you use a
|
|
231
|
+
rotation_strategy that delays uploads.
|
|
227
232
|
|
|
228
233
|
[id="plugins-{type}s-{plugin}-proxy_uri"]
|
|
229
234
|
===== `proxy_uri`
|
data/logstash-output-s3.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-s3'
|
|
3
|
-
s.version = '4.3.
|
|
3
|
+
s.version = '4.3.4'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = "Sends Logstash events to the Amazon Simple Storage Service"
|
|
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/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-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.
|
|
4
|
+
version: 4.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|