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 +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/fluent-plugin-yohoushi.gemspec +2 -1
- data/lib/fluent/plugin/out_yohoushi.rb +3 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0260b396f8e546b3fbac8d17c8c54b2bf99d9c91
|
|
4
|
+
data.tar.gz: 580c25d8ae8a7b074ba6d77c64386a03f8cbb013
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a55115383e3167ce00babc0c5463fc88027ba7e77fc26435258eb9b645ef51669bed1a4060db1bfeee23a37711c8c65edddab556c26b29f1c601233ccf1277e
|
|
7
|
+
data.tar.gz: c060c70279ec0b3fa27637af816b8caa05ebe328511064dfc2280660a030fc64f02186fb3983ee2e2871366fae92a9e590805071fc5005c8a6bb0f5435b3b53c
|
data/CHANGELOG.md
CHANGED
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
|
|
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.
|
|
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 `
|
|
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.
|
|
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-
|
|
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.
|
|
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:
|