fluent-plugin-growthforecast 0.2.10 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/README.md +6 -6
- data/fluent-plugin-growthforecast.gemspec +3 -3
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65ef251fcecd3b5a3e25e19999f7a729169ec5dd
|
4
|
+
data.tar.gz: ec9832faf2b9e613f20c21cd9865a09fe7d98820
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf66365063373360b71a8443b6f0495efdb626c3ac3b49fc2814fc6033afde42703910fd3716060e9f9251ac7847c7d95a9372312de8679a379db6914e47277a
|
7
|
+
data.tar.gz: 33f8c44d73ae0af1e5805a130aa0d0efccbd04c2bdd6020b1f81ce1e00c0f0934827905033c7f5caa19cbd00600e69a53bc5711d30dbfd79438604cff2307b52
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -19,7 +19,7 @@ For messages such as:
|
|
19
19
|
Configuration example for graphs in growthforecast with POST api url 'http://growthforecast.local/api/service1/metrics1/metrics_FIELDNAME'.
|
20
20
|
|
21
21
|
<match metrics>
|
22
|
-
type growthforecast
|
22
|
+
@type growthforecast
|
23
23
|
gfapi_url http://growthforecast.local/api/
|
24
24
|
service service1
|
25
25
|
section metrics1
|
@@ -35,7 +35,7 @@ With this configuration, out_growthforecast posts urls below.
|
|
35
35
|
If you want to use tags for `section` or `service` in GrowthForecast, use `tag_for` options and `remove_prefix` (and not to set the `section` or `service` that the value of 'tag_for' used to.).
|
36
36
|
|
37
37
|
<match metrics.**>
|
38
|
-
type growthforecast
|
38
|
+
@type growthforecast
|
39
39
|
gfapi_url http://growthforecast.local/api/
|
40
40
|
service service1
|
41
41
|
name_keys field1,field2,field3diff
|
@@ -48,7 +48,7 @@ If you want to use tags for `section` or `service` in GrowthForecast, use `tag_
|
|
48
48
|
`name_key_pattern REGEXP` available instead of `name_keys` like this:
|
49
49
|
|
50
50
|
<match metrics.**>
|
51
|
-
type growthforecast
|
51
|
+
@type growthforecast
|
52
52
|
gfapi_url http://growthforecast.local/api/
|
53
53
|
service service1
|
54
54
|
tag_for section # or 'name_prefix'(default) or 'ignore' or 'service'
|
@@ -61,7 +61,7 @@ This configuration matches only with metrics.field1, metrics.key20, .... and doe
|
|
61
61
|
If you want to customise for more flexible graph path, use `graph_path` option with `${tag}` and `${key_name}` placeholders.
|
62
62
|
|
63
63
|
<match test.service1>
|
64
|
-
type growthforecast
|
64
|
+
@type growthforecast
|
65
65
|
gfapi_url http://growthforecast.local/api/
|
66
66
|
graph_path ${tag}/metrics1/${tag}_${key_name}
|
67
67
|
name_keys field1,field2,field3diff
|
@@ -77,7 +77,7 @@ With this configuration, out_growthforecast posts urls below.
|
|
77
77
|
If your GrowthForecast protected with basic authentication, specify `authentication` option:
|
78
78
|
|
79
79
|
<match metrics.**>
|
80
|
-
type growthforecast
|
80
|
+
@type growthforecast
|
81
81
|
gfapi_url http://growthforecast.protected.anywhere.example.com/api/
|
82
82
|
service yourservice
|
83
83
|
tag_for section
|
@@ -90,7 +90,7 @@ If your GrowthForecast protected with basic authentication, specify `authenticat
|
|
90
90
|
Version v0.2.0 or later, this plugin uses HTTP connection keep-alive for a batch emitted events. To disable this, specify `keepalive` option:
|
91
91
|
|
92
92
|
<match metrics.**>
|
93
|
-
type growthforecast
|
93
|
+
@type growthforecast
|
94
94
|
gfapi_url http://growthforecast.protected.anywhere.example.com/api/
|
95
95
|
service yourservice
|
96
96
|
tag_for section
|
@@ -2,13 +2,13 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = "fluent-plugin-growthforecast"
|
5
|
-
gem.version = "0.
|
5
|
+
gem.version = "0.3.0"
|
6
6
|
gem.authors = ["TAGOMORI Satoshi"]
|
7
7
|
gem.email = ["tagomoris@gmail.com"]
|
8
8
|
gem.summary = %q{Fluentd output plugin to post numbers to GrowthForecast (by kazeburo)}
|
9
9
|
gem.description = %q{For GrowthForecast, see http://kazeburo.github.com/GrowthForecast/}
|
10
10
|
gem.homepage = "https://github.com/tagomoris/fluent-plugin-growthforecast"
|
11
|
-
gem.license = "
|
11
|
+
gem.license = "Apache-2.0"
|
12
12
|
|
13
13
|
gem.files = `git ls-files`.split($\)
|
14
14
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
|
|
17
17
|
|
18
18
|
gem.add_development_dependency "rake"
|
19
19
|
gem.add_development_dependency "test-unit", ">= 3.0.0"
|
20
|
-
gem.add_runtime_dependency "fluentd"
|
20
|
+
gem.add_runtime_dependency "fluentd", "< 0.14.0"
|
21
21
|
gem.add_runtime_dependency "fluent-mixin-config-placeholders", ">= 0.3.0"
|
22
22
|
gem.add_runtime_dependency "resolve-hostname", ">= 0.0.4"
|
23
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-growthforecast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TAGOMORI Satoshi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: fluentd
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "<"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 0.14.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "<"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 0.14.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: fluent-mixin-config-placeholders
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -102,7 +102,7 @@ files:
|
|
102
102
|
- test/plugin/test_out_growthforecast.rb
|
103
103
|
homepage: https://github.com/tagomoris/fluent-plugin-growthforecast
|
104
104
|
licenses:
|
105
|
-
-
|
105
|
+
- Apache-2.0
|
106
106
|
metadata: {}
|
107
107
|
post_install_message:
|
108
108
|
rdoc_options: []
|
@@ -120,11 +120,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
122
|
rubyforge_project:
|
123
|
-
rubygems_version: 2.
|
123
|
+
rubygems_version: 2.6.8
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: Fluentd output plugin to post numbers to GrowthForecast (by kazeburo)
|
127
127
|
test_files:
|
128
128
|
- test/helper.rb
|
129
129
|
- test/plugin/test_out_growthforecast.rb
|
130
|
-
has_rdoc:
|