fluent-plugin-record-reformer 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +6 -0
- data/fluent-plugin-record-reformer.gemspec +1 -1
- data/lib/fluent/plugin/out_record_reformer.rb +16 -8
- 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: a489c46189c76ae3c606242b7b5d2a955d044f7c
|
4
|
+
data.tar.gz: 72dc9bea1cab4b0153f7d8b2847a5f75334a2e64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43d512aeb2f8e63779ba894716e17b5c1c0c666a7860497da43c1566f2e00265faa182166272ce9d65e22b83a3a878e7e206cbb72664aa6203588fa8dd34e0ac
|
7
|
+
data.tar.gz: a29e0f8fd38e867411fe2787d1074fabc280b73328c19b7df49d38f81808d97392cd98b1ce988bd517085f7c8aa673a088d66bfc3f8eef72d3b5cb5187d21399
|
data/.travis.yml
CHANGED
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.2"
|
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"
|
@@ -9,14 +9,22 @@ module Fluent
|
|
9
9
|
super
|
10
10
|
end
|
11
11
|
|
12
|
-
config_param :output_tag, :string, :default => nil # obsolete
|
13
|
-
|
14
|
-
config_param :
|
15
|
-
|
16
|
-
config_param :
|
17
|
-
|
18
|
-
config_param :
|
19
|
-
|
12
|
+
config_param :output_tag, :string, :default => nil, # obsolete
|
13
|
+
:desc => 'The output tag name. This option is deprecated. Use `tag` option instead.'
|
14
|
+
config_param :tag, :string, :default => nil,
|
15
|
+
:desc => 'The output tag name.'
|
16
|
+
config_param :remove_keys, :string, :default => nil,
|
17
|
+
:desc => 'Specify record keys to be removed by a string separated by , (comma).'
|
18
|
+
config_param :keep_keys, :string, :default => nil,
|
19
|
+
:desc => 'Specify record keys to be kept by a string separated by , (comma).'
|
20
|
+
config_param :renew_record, :bool, :default => false,
|
21
|
+
:desc => 'Creates an output record newly without extending (merging) the input record fields.'
|
22
|
+
config_param :renew_time_key, :string, :default => nil,
|
23
|
+
:desc => 'Overwrites the time of events with a value of the record field.'
|
24
|
+
config_param :enable_ruby, :bool, :default => true, # true for lower version compatibility
|
25
|
+
:desc => 'Enable to use ruby codes in placeholders.'
|
26
|
+
config_param :auto_typecast, :bool, :default => false, # false for lower version compatibility
|
27
|
+
:desc => 'Automatically cast the field types.'
|
20
28
|
|
21
29
|
BUILTIN_CONFIGURATIONS = %W(@id @type @label type tag output_tag remove_keys renew_record keep_keys enable_ruby renew_time_key auto_typecast)
|
22
30
|
|
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.2
|
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-12-
|
11
|
+
date: 2015-12-29 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.5.1
|
152
152
|
signing_key:
|
153
153
|
specification_version: 4
|
154
154
|
summary: Fluentd plugin to add or replace fields of a event record
|