fluent-plugin-record-reformer 0.7.0 → 0.7.1
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 +6 -0
- data/fluent-plugin-record-reformer.gemspec +1 -1
- data/lib/fluent/plugin/out_record_reformer.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3428b243096f028a953eab9f82f8593d7cebe7c9
|
|
4
|
+
data.tar.gz: 505c5dba9d398e295c4505e1d239abad5b7506c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bdb2500f2cd1803cc16e1d422ecaf74446429ffb64a5d664c78b31a4fe7bb07e7b4769e19f16642bef8ac8f4646532f3c92e7a50951e2b01ecce4fe0f75faf0
|
|
7
|
+
data.tar.gz: 03aac708a0d1f9b2fc618ae6ac750695a8f9772689042576a60b6308d22314d05587ff9c7634af0b19e61fd9b9a326d15ff55c94b0b6865983f9c34447fbfac4
|
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.7.
|
|
6
|
+
gem.version = "0.7.1"
|
|
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"
|
|
@@ -18,7 +18,7 @@ module Fluent
|
|
|
18
18
|
config_param :enable_ruby, :bool, :default => true # true for lower version compatibility
|
|
19
19
|
config_param :auto_typecast, :bool, :default => false # false for lower version compatibility
|
|
20
20
|
|
|
21
|
-
BUILTIN_CONFIGURATIONS = %W(type tag output_tag remove_keys renew_record keep_keys enable_ruby renew_time_key auto_typecast)
|
|
21
|
+
BUILTIN_CONFIGURATIONS = %W(@id @type @label type tag output_tag remove_keys renew_record keep_keys enable_ruby renew_time_key auto_typecast)
|
|
22
22
|
|
|
23
23
|
# To support log_level option implemented by Fluentd v0.10.43
|
|
24
24
|
unless method_defined?(:log)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-record-reformer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Naotoshi Seo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
148
|
version: '0'
|
|
149
149
|
requirements: []
|
|
150
150
|
rubyforge_project:
|
|
151
|
-
rubygems_version: 2.
|
|
151
|
+
rubygems_version: 2.4.5
|
|
152
152
|
signing_key:
|
|
153
153
|
specification_version: 4
|
|
154
154
|
summary: Fluentd plugin to add or replace fields of a event record
|