logstash-output-graphite 3.1.5 → 3.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/graphite.rb +6 -1
- data/logstash-output-graphite.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb8586fd21835620eca2ca1d18f50afc04a526266793506d5f3587ff5db0ba79
|
4
|
+
data.tar.gz: 7965f0a80ff8c9f282434c032fea2b025fa14ac9737f6b43baac87cd273b0a6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43621d8366846a814db65433b736ff03d856d48c32f3c11bd95c257b1cf57c3133bfb039904e44065a63f3f61aa7fc958546d997c4ca8f63384309a904a536b9
|
7
|
+
data.tar.gz: d6470e2ed555a40899be92334c8a3e4e6896c26980559fc61f5211fd173bb47f0445fd3dda23f3d10ec5971c2d6ee8314ee79bc1c38e312c162d0c940d82ba0a
|
data/CHANGELOG.md
CHANGED
@@ -130,7 +130,12 @@ class LogStash::Outputs::Graphite < LogStash::Outputs::Base
|
|
130
130
|
begin
|
131
131
|
@socket.puts(message)
|
132
132
|
rescue Errno::EPIPE, Errno::ECONNRESET, IOError => e
|
133
|
-
@logger.warn("Connection to graphite server died", :exception => e, :host => @host, :port => @port)
|
133
|
+
@logger.warn("Connection to graphite server died", :exception => e.class, :message => e.message, :host => @host, :port => @port)
|
134
|
+
sleep(@reconnect_interval)
|
135
|
+
connect
|
136
|
+
retry if @resend_on_failure
|
137
|
+
rescue => e
|
138
|
+
@logger.warn("Failed to send data", :exception => e.class, :message => e.message, :host => @host, :port => @port)
|
134
139
|
sleep(@reconnect_interval)
|
135
140
|
connect
|
136
141
|
retry if @resend_on_failure
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-output-graphite'
|
4
|
-
s.version = '3.1.
|
4
|
+
s.version = '3.1.6'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Writes metrics 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"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-graphite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
128
|
version: '0'
|
129
129
|
requirements: []
|
130
130
|
rubyforge_project:
|
131
|
-
rubygems_version: 2.6.
|
131
|
+
rubygems_version: 2.6.13
|
132
132
|
signing_key:
|
133
133
|
specification_version: 4
|
134
134
|
summary: Writes metrics to Graphite
|