logstash-output-graphite-mavlyutov 3.2.0 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/logstash/outputs/graphite.rb +1 -0
- data/logstash-output-graphite.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42c40e818922b1090becc5f73726f3e2e01a76d5
|
4
|
+
data.tar.gz: 6d7b7e78191d52b5a8ecc386d19e290d19e06fb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9ecea8a514062d2c4a364ed060d5d56fd43fa27d81097c9954b7b5f942e3a9a9cf3df604fefc2c95c0b72bc1ebefc881e0c1c829c749608e69fc0bed6b73917
|
7
|
+
data.tar.gz: 3c64683d9750860714ed225e54edd5b17eda2096515edf809ef5daf3f3eff738b88b0998ba7db8c7f71ed208b5778e720e28bb84ed6e580918c0704add5e0f37
|
@@ -110,6 +110,7 @@ class LogStash::Outputs::Graphite < LogStash::Outputs::Base
|
|
110
110
|
|
111
111
|
begin
|
112
112
|
address, _, port = host.rpartition(":")
|
113
|
+
@logger.debug? && @logger.debug("Trying to send metrics to", :address => address, :port => port)
|
113
114
|
TCPSocket.new(address, port).puts(message)
|
114
115
|
rescue Errno::ECOPNNREFUSED, Errno::EPIPE, Errno::ECONNRESET, IOError
|
115
116
|
if hosts_to_try.size > 0
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-output-graphite-mavlyutov'
|
4
|
-
s.version = '3.2.
|
4
|
+
s.version = '3.2.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "This output allows you to pull metrics from your logs and ship them to Graphite"
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|