logstash-output-s3 4.3.2 → 4.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/README.md +1 -1
- data/docs/index.asciidoc +6 -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: ddee0a9caa6ff45882472bb1ef9d198e5263d1da62feca4cda463ecf32a85192
|
4
|
+
data.tar.gz: da07f987033ceecb078fd32a658f85502492b1364622aa77fc384c5eb13c702c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2da28864bab1b28e28830055d7a21f63216ab00e9a4385638afb4f7f1034f61c208ed50487976f6c832761c1f4456ad39fda621c3d24af8a242ff38e00ac6268
|
7
|
+
data.tar.gz: 8d5e29f0d672856594a1ca87a844ace560d2f054461141670fb18a1acfc6eeccb797c8e8492b37795859f69fb85f12abc42ade74b5348fc6bc1c08b7b3c4054a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
## 4.3.3
|
2
|
+
- [DOC] Update links to use shared attributes [#230](https://github.com/logstash-plugins/logstash-output-s3/pull/230)
|
3
|
+
|
1
4
|
## 4.3.2
|
2
|
-
- [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)
|
5
|
+
- [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)
|
3
6
|
|
4
7
|
## 4.3.1
|
5
8
|
- [DOC] Updated setting descriptions for clarity [#219](https://github.com/logstash-plugins/logstash-output-s3/pull/219) and [#220](https://github.com/logstash-plugins/logstash-output-s3/pull/220)
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Logstash Plugin
|
2
2
|
|
3
|
-
[![Travis Build Status](https://travis-ci.
|
3
|
+
[![Travis Build Status](https://travis-ci.com/logstash-plugins/logstash-output-s3.svg)](https://travis-ci.com/logstash-plugins/logstash-output-s3)
|
4
4
|
|
5
5
|
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
6
6
|
|
data/docs/index.asciidoc
CHANGED
@@ -217,9 +217,12 @@ 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, this can simulate directories on S3.
|
221
|
-
|
222
|
-
|
220
|
+
Specify a prefix to the uploaded filename, this can simulate directories on S3.
|
221
|
+
Prefix does not require leading slash.
|
222
|
+
This option supports
|
223
|
+
{logstash-ref}/event-dependent-configuration.html#sprintf[Logstash
|
224
|
+
interpolation]; for example, files can be prefixed with the event date using
|
225
|
+
`prefix = "%{+YYYY}/%{+MM}/%{+dd}"`.
|
223
226
|
Be warned this can create a lot of temporary local files.
|
224
227
|
|
225
228
|
[id="plugins-{type}s-{plugin}-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.3'
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|