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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3428b243096f028a953eab9f82f8593d7cebe7c9
4
- data.tar.gz: 505c5dba9d398e295c4505e1d239abad5b7506c3
3
+ metadata.gz: a489c46189c76ae3c606242b7b5d2a955d044f7c
4
+ data.tar.gz: 72dc9bea1cab4b0153f7d8b2847a5f75334a2e64
5
5
  SHA512:
6
- metadata.gz: 8bdb2500f2cd1803cc16e1d422ecaf74446429ffb64a5d664c78b31a4fe7bb07e7b4769e19f16642bef8ac8f4646532f3c92e7a50951e2b01ecce4fe0f75faf0
7
- data.tar.gz: 03aac708a0d1f9b2fc618ae6ac750695a8f9772689042576a60b6308d22314d05587ff9c7634af0b19e61fd9b9a326d15ff55c94b0b6865983f9c34447fbfac4
6
+ metadata.gz: 43d512aeb2f8e63779ba894716e17b5c1c0c666a7860497da43c1566f2e00265faa182166272ce9d65e22b83a3a878e7e206cbb72664aa6203588fa8dd34e0ac
7
+ data.tar.gz: a29e0f8fd38e867411fe2787d1074fabc280b73328c19b7df49d38f81808d97392cd98b1ce988bd517085f7c8aa673a088d66bfc3f8eef72d3b5cb5187d21399
@@ -5,3 +5,4 @@ rvm:
5
5
  - 2.2.*
6
6
  gemfile:
7
7
  - Gemfile
8
+ before_install: gem update bundler
@@ -1,3 +1,9 @@
1
+ ## 0.7.2 (2015/12/29)
2
+
3
+ Enhancements
4
+
5
+ * Add desc to options (thanks to cosmo0920)
6
+
1
7
  ## 0.7.1 (2015/12/16)
2
8
 
3
9
  Enhancements
@@ -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.1"
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
- config_param :tag, :string, :default => nil
14
- config_param :remove_keys, :string, :default => nil
15
- config_param :keep_keys, :string, :default => nil
16
- config_param :renew_record, :bool, :default => false
17
- config_param :renew_time_key, :string, :default => nil
18
- config_param :enable_ruby, :bool, :default => true # true for lower version compatibility
19
- config_param :auto_typecast, :bool, :default => false # false for lower version compatibility
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.1
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-15 00:00:00.000000000 Z
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.4.5
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