fluent-plugin-s3 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +5 -0
- data/README.rdoc +2 -0
- data/VERSION +1 -1
- data/lib/fluent/plugin/out_s3.rb +2 -0
- 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: a6933d8af0483701ed94c8c0c720ecc85d3beafb
|
4
|
+
data.tar.gz: 97c807cc7de26ccc845554628c9eed5929028241
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94dd5fc35ca2eee56e90952f42cf145b0d3a15e3a11da494ee49d851291a135e14163612200173b06b6d0b4c0502c910e065c1abf5b35a07d55050f5b395c9aa
|
7
|
+
data.tar.gz: da466b470896ef625716609ea62ad193789b0370a2590a093b4bb12c2378018a8d1570ff55f1131b694312378b7f16d0ecd866245d4df3450161f729cee95318
|
data/ChangeLog
CHANGED
data/README.rdoc
CHANGED
@@ -148,6 +148,8 @@ You can change key name by "message_key" option.
|
|
148
148
|
|
149
149
|
[utc] Use UTC instead of local time.
|
150
150
|
|
151
|
+
[reduced_redundancy] Use S3 reduced redundancy storage for 33% cheaper pricing. Default is false.
|
152
|
+
|
151
153
|
== IAM Policy
|
152
154
|
|
153
155
|
The following is an example for a minimal IAM policy needed to write to an s3 bucket (matches my-s3bucket/logs, my-s3bucket-test, etc.).
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.1
|
data/lib/fluent/plugin/out_s3.rb
CHANGED
@@ -136,6 +136,8 @@ module Fluent
|
|
136
136
|
|
137
137
|
def check_apikeys
|
138
138
|
@bucket.empty?
|
139
|
+
rescue AWS::S3::Errors::NoSuchBucket
|
140
|
+
# ignore NoSuchBucket Error because ensure_bucket checks it.
|
139
141
|
rescue
|
140
142
|
raise "can't call S3 API. Please check your aws_key_id / aws_sec_key or s3_region configuration"
|
141
143
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-12-
|
12
|
+
date: 2014-12-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fluentd
|