adp-fluent-plugin-graphite 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/adp-fluent-plugin-graphite.gemspec +1 -1
- data/lib/fluent/plugin/out_graphite.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd0c30eee533823568e2c81b50b6170e4c27edf21b6658042dcc48bd583ac26b
|
|
4
|
+
data.tar.gz: e0226b9d11829611e2f7de8e273fa8eee87c13d6f39f3c693126ec7603833ce7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a15fc0687a594a272553b7e785690832822738aaab8672fe82c05577bbeed428587773101e7ef179bf0e4924a03ca8c9a0803ccc94ad149bb5dc10838f2c2b0
|
|
7
|
+
data.tar.gz: 827807f99db84afdd190c5d7a6640a4b7b5337224b92e50944eb86497eb2aab6240ac949ea338c848e86887e2c15590f7b89bc6e207aec03e341cdfe6f84a994
|
|
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.name = 'adp-fluent-plugin-graphite'
|
|
6
|
-
gem.version = '0.0.
|
|
6
|
+
gem.version = '0.0.2'
|
|
7
7
|
gem.authors = ['Satoshi SUZUKI']
|
|
8
8
|
gem.email = 'studio3104.com@gmail.com'
|
|
9
9
|
gem.homepage = 'https://github.com/studio3104/fluent-plugin-graphite'
|
|
@@ -91,7 +91,7 @@ class Fluent::GraphiteOutput < Fluent::Output
|
|
|
91
91
|
def post(metrics, time)
|
|
92
92
|
trial ||= 1
|
|
93
93
|
@client.metrics(metrics, time)
|
|
94
|
-
log.
|
|
94
|
+
log.warn "Sending metrics: #{metrics}"
|
|
95
95
|
rescue Errno::ETIMEDOUT
|
|
96
96
|
# after long periods with nothing emitted, the connection will be closed and result in timeout
|
|
97
97
|
if trial <= @max_retries
|