fluent-plugin-record-reformer 0.6.2 → 0.6.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 +6 -0
- data/fluent-plugin-record-reformer.gemspec +1 -1
- data/lib/fluent/plugin/out_record_reformer.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: beaea68d997ac0ad945eed7538383648b364365a
|
4
|
+
data.tar.gz: a09b4a368bda8e78d1d9b302710eb2d64ab0982b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2860304c62904d3805abd0bbae0ae41015c22c046a37219c4834c3d08d986c59c3c53c51c3e1998cbbdb9f169e0e0bcab38a1a567d4dd848c2887b36f3186b69
|
7
|
+
data.tar.gz: b629578c947c7b663277eafdfecc36bcd034c7d64b8d3c3b44f9940e23907a8bcfe9ab3943e08707aa51a141310f7304346b92a8598ac2e8344c269f0a16e10e
|
data/CHANGELOG.md
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.name = "fluent-plugin-record-reformer"
|
6
|
-
gem.version = "0.6.
|
6
|
+
gem.version = "0.6.3"
|
7
7
|
gem.authors = ["Naotoshi Seo"]
|
8
8
|
gem.email = "sonots@gmail.com"
|
9
9
|
gem.homepage = "https://github.com/sonots/fluent-plugin-record-reformer"
|
@@ -17,7 +17,7 @@ module Fluent
|
|
17
17
|
config_param :renew_time_key, :string, :default => nil
|
18
18
|
config_param :enable_ruby, :bool, :default => true # true for lower version compatibility
|
19
19
|
|
20
|
-
BUILTIN_CONFIGURATIONS = %W(type tag output_tag remove_keys renew_record keep_keys enable_ruby)
|
20
|
+
BUILTIN_CONFIGURATIONS = %W(type tag output_tag remove_keys renew_record keep_keys enable_ruby renew_time_key)
|
21
21
|
|
22
22
|
# To support log_level option implemented by Fluentd v0.10.43
|
23
23
|
unless method_defined?(:log)
|