fluent-plugin-yohoushi 0.0.1 → 0.0.2

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: ba86fd85bd4b6e256ffb4f1633d8944a274307b8
4
- data.tar.gz: 51a4a9f99f7055d49f42e4af253730f4a215560b
3
+ metadata.gz: 0260b396f8e546b3fbac8d17c8c54b2bf99d9c91
4
+ data.tar.gz: 580c25d8ae8a7b074ba6d77c64386a03f8cbb013
5
5
  SHA512:
6
- metadata.gz: fa06329d4f0d24d58360a874b8346365ceae60c467898c3f9d819b12a6d821591832a39826fc7a50e425716f1d51cae774e0bfb6d495129a50d820b17b71c662
7
- data.tar.gz: 5975b9820caef9e28a7cff8fbe17a691ef483011df0f4be7ec6a9e9ade6f6993720d5924f647902cc2f4785dd1c466b4f13697c46a1980a9305873c729914d5d
6
+ metadata.gz: 2a55115383e3167ce00babc0c5463fc88027ba7e77fc26435258eb9b645ef51669bed1a4060db1bfeee23a37711c8c65edddab556c26b29f1c601233ccf1277e
7
+ data.tar.gz: c060c70279ec0b3fa27637af816b8caa05ebe328511064dfc2280660a030fc64f02186fb3983ee2e2871366fae92a9e590805071fc5005c8a6bb0f5435b3b53c
data/CHANGELOG.md CHANGED
@@ -0,0 +1,13 @@
1
+ ## 0.0.2 (2013/12/12)
2
+
3
+ Enhancement:
4
+
5
+ * Support derive
6
+
7
+ Fixes:
8
+
9
+ * Fix NameError of ConfigError
10
+
11
+ ## 0.0.1 (2013/08/29)
12
+
13
+ First version
data/README.md CHANGED
@@ -64,7 +64,7 @@ then fluent-plugin-yohoushi posts data to yohoshi similarly like
64
64
 
65
65
  - mode
66
66
 
67
- The graph mode (either of gauge, count, or modified). Just same as mode of GrowthForecast POST parameter. Default is gauge.
67
+ The graph mode (either of gauge, count, modified, or derive). Just same as mode of GrowthForecast POST parameter. Default is gauge.
68
68
 
69
69
  ### Placeholders
70
70
 
@@ -3,12 +3,13 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-yohoushi"
6
- s.version = "0.0.1"
6
+ s.version = "0.0.2"
7
7
  s.authors = ["Naotoshi Seo"]
8
8
  s.email = ["sonots@gmail.com"]
9
9
  s.homepage = "https://github.com/sonots/fluent-plugin-yohoushi"
10
10
  s.summary = "fluentd plugin to post data to yohoushi"
11
11
  s.description = s.summary
12
+ s.licenses = ["MIT"]
12
13
 
13
14
  s.rubyforge_project = "fluent-plugin-yohoushi"
14
15
 
@@ -24,8 +24,10 @@ class Fluent::YohoushiOutput < Fluent::Output
24
24
  :count
25
25
  when 'modified'
26
26
  :modified
27
+ when 'derive'
28
+ :derive
27
29
  else
28
- raise ConfigError, "stdout output output_type should be `gauge`, `count`, or `modified`"
30
+ raise Fluent::ConfigError, "stdout output output_type should be `gauge`, `count`, `modified`, or `derive`"
29
31
  end
30
32
  end
31
33
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-yohoushi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.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: 2013-08-29 00:00:00.000000000 Z
11
+ date: 2013-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -129,7 +129,8 @@ files:
129
129
  - spec/out_yohoushi_spec.rb
130
130
  - spec/spec_helper.rb
131
131
  homepage: https://github.com/sonots/fluent-plugin-yohoushi
132
- licenses: []
132
+ licenses:
133
+ - MIT
133
134
  metadata: {}
134
135
  post_install_message:
135
136
  rdoc_options: []
@@ -147,11 +148,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
148
  version: '0'
148
149
  requirements: []
149
150
  rubyforge_project: fluent-plugin-yohoushi
150
- rubygems_version: 2.0.2
151
+ rubygems_version: 2.1.10
151
152
  signing_key:
152
153
  specification_version: 4
153
154
  summary: fluentd plugin to post data to yohoushi
154
155
  test_files:
155
156
  - spec/out_yohoushi_spec.rb
156
157
  - spec/spec_helper.rb
157
- has_rdoc: