fluent-plugin-td 0.10.26 → 0.10.27

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3b96e1e6043112fc55402699b53ff5874f91f15
4
- data.tar.gz: 4a62e347a754636e4e44e633639b9fb4fac3fbbc
3
+ metadata.gz: 668a4eb674a2ea968b1fe87b2f18a48f65c500f4
4
+ data.tar.gz: efbee27ae80e7cd6091425ed2609e2f8ba2f3b1f
5
5
  SHA512:
6
- metadata.gz: 4d1f260c0b0f30bd7fbcbbc41dd5ac9bfbb8f0efc42efc2691d10a08d699aaa1514a0d382c7327ea4ff134a3336d4df4230a32e056c86acaf1622da1bc01d5cf
7
- data.tar.gz: bb9a87d4389f5eef5223842ab59b1ee054e2a6b8ddc06e74f54a75794671be9455da2493696aacc657039bbd2e2b148f6a69207a1b5cb8e975452ae631264b6d
6
+ metadata.gz: edc948913205c4bee2b87fc41824701e6d2c45a8569379ee98a41a8e866f67d4eeb4aa9a6dc7fc48d71190e549768cf4fe6251d120a8bbc6f9bb82ebcb60057b
7
+ data.tar.gz: 6c7b7d9e19501bbd357de9da7168fb4aa09d10636e5f3a617a3b201ded1d91fc8ba8f331866c65c7d312b9c131dfb81289af74e79f546855548267e0a96333fb
data/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ Release 0.10.27 - 2015/06/10
2
+
3
+ * Add secret option to apikey parameter
4
+
5
+
1
6
  Release 0.10.26 - 2015/03/03
2
7
 
3
8
  * Add use_gzip_command option to reduce CPU usage
data/README.rdoc CHANGED
@@ -84,6 +84,10 @@ The configuration options currently supported are:
84
84
 
85
85
  Requires the path to the temporary folder as argument. If not specified, the system default as specified by Ruby's +Dir.tmpdir+ is used (the +TMPDIR+ environment variable is honored).
86
86
 
87
+ +use_gzip_command+::
88
+ Use external gzip command instead of Ruby's Gzip library. It uses another CPU core so it may improve compression and IO performance.
89
+
90
+
87
91
  == Copyright
88
92
 
89
93
  Copyright:: Copyright (c) 2011 Treasure Data, Inc.
@@ -15,7 +15,7 @@ module Fluent
15
15
  define_method(:log) { $log }
16
16
  end
17
17
 
18
- config_param :apikey, :string
18
+ config_param :apikey, :string, :secret => true
19
19
  config_param :database, :string
20
20
  config_param :table, :string
21
21
  config_param :tmpdir, :string, :default => nil
@@ -12,7 +12,7 @@ module Fluent
12
12
  define_method(:log) { $log }
13
13
  end
14
14
 
15
- config_param :apikey, :string
15
+ config_param :apikey, :string, :secret => true
16
16
  config_param :auto_create_table, :bool, :default => true
17
17
  config_param :use_gzip_command, :bool, :default => false
18
18
 
@@ -1,5 +1,5 @@
1
1
  module Fluent
2
2
  module TreasureDataPlugin
3
- VERSION = '0.10.26'
3
+ VERSION = '0.10.27'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-td
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.26
4
+ version: 0.10.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Treasure Data, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-02 00:00:00.000000000 Z
11
+ date: 2015-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd