fluent-plugin-openstack 1.0.5 → 1.0.6
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/VERSION +1 -1
- data/lib/fluent/plugin/out_swift.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15906c9b6eb7e16912f913909f537dc16fb8955f45851ddc5a8bf1379a84b493
|
|
4
|
+
data.tar.gz: 19715a8160434a3011225637af693552e8745d35ca7b1b8eb12695df4081c404
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14e96990346115928014cd4fd5033540d3bb250c5d05010e0e90034d66325f80874ed0455718e9e3dfdc48cd83fb0a3461613aa54753bbbf2bf8e70e0418e474
|
|
7
|
+
data.tar.gz: 513f073fba93a7abd61acaa4c51c1adaf8f1e688f88926cf1f09d492cc2f14465d5ed79ae13c04d7621bb2d4985f8a5c606f55dac664f9fdb3f40d9ca883ba78
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.6
|
|
@@ -36,7 +36,7 @@ module Fluent::Plugin
|
|
|
36
36
|
desc 'If false, the certificate of endpoint will not be verified'
|
|
37
37
|
config_param :ssl_verify, :bool, default: true
|
|
38
38
|
desc 'The format of Swift object keys'
|
|
39
|
-
config_param :swift_object_key_format, :string, default: '%{path}/%
|
|
39
|
+
config_param :swift_object_key_format, :string, default: '%{path}/%H%M_%{index}.%{file_extension}'
|
|
40
40
|
desc 'Create Swift container if it does not exists'
|
|
41
41
|
config_param :auto_create_container, :bool, default: true
|
|
42
42
|
config_param :check_apikey_on_start, :bool, default: true
|
|
@@ -55,7 +55,8 @@ module Fluent::Plugin
|
|
|
55
55
|
|
|
56
56
|
config_section :buffer do
|
|
57
57
|
config_set_default :chunk_keys, ['time']
|
|
58
|
-
config_set_default :timekey,
|
|
58
|
+
config_set_default :timekey, '1h'
|
|
59
|
+
config_set_default :timekey_wait, '5m'
|
|
59
60
|
end
|
|
60
61
|
|
|
61
62
|
helpers :compat_parameters, :formatter, :inject
|