fluent-plugin-datadog-log 0.1.0.rc17 → 0.1.0.rc18
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea5367ecfa2d3cfd858c8c3854328f087dc02dc2
|
|
4
|
+
data.tar.gz: 4a8cb53397ceba0e643919df3b72f0f36fa3f4fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c54999044447974a62210989f775694e5a75d85377edd57a379072c5ebd652fcc2f06aca44327d491185bd0e478d998e288e52e5a03068cb39974e4b47e4dff1
|
|
7
|
+
data.tar.gz: 1eeba1a6b4ddbfdee6483288f0ec6cb0d44e3768bf8ce174369ec60e92afb0844025d4840bdeb69bb20d8a1c68e225682a8c8c87e2e0f9905e748e100d57ad61
|
data/Gemfile.lock
CHANGED
|
@@ -8,7 +8,7 @@ eos
|
|
|
8
8
|
gem.homepage = \
|
|
9
9
|
'https://github.com/mumoshu/fluent-plugin-datadog-log'
|
|
10
10
|
gem.license = 'Apache-2.0'
|
|
11
|
-
gem.version = '0.1.0.
|
|
11
|
+
gem.version = '0.1.0.rc18'
|
|
12
12
|
gem.authors = ['Yusuke KUOKA']
|
|
13
13
|
gem.email = ['ykuoka@gmail.com']
|
|
14
14
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
|
@@ -9,6 +9,19 @@ require 'net/tcp_client'
|
|
|
9
9
|
require 'socket'
|
|
10
10
|
require 'time'
|
|
11
11
|
|
|
12
|
+
# Never give up on a write timeout/Fix for:
|
|
13
|
+
# Not retrying a log message later
|
|
14
|
+
# error=\"Timed out after 60.0 seconds trying to write to
|
|
15
|
+
# intake.logs.datadoghq.com[52.206.154.220]:10516\"
|
|
16
|
+
# error_class=Net::TCPClient::WriteTimeout
|
|
17
|
+
Net::TCPClient.reconnect_on_errors << Net::TCPClient::WriteTimeout
|
|
18
|
+
|
|
19
|
+
# Never give up on a corrupted SSL connection/Fix for:
|
|
20
|
+
# Not retrying a log message later
|
|
21
|
+
# error="SSL_write: bad write retry"
|
|
22
|
+
# error_class=OpenSSL::SSL::SSLError
|
|
23
|
+
Net::TCPClient.reconnect_on_errors << OpenSSL::SSL::SSLError
|
|
24
|
+
|
|
12
25
|
# Datadog provides various helpers to programatically access Datadog services
|
|
13
26
|
module Datadog
|
|
14
27
|
# Log provides various helpers and classes to support programatically
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-datadog-log
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.rc18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yusuke KUOKA
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-12-
|
|
11
|
+
date: 2017-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -177,6 +177,8 @@ files:
|
|
|
177
177
|
- pkg/fluent-plugin-datadog-log-0.1.0.rc14.gem
|
|
178
178
|
- pkg/fluent-plugin-datadog-log-0.1.0.rc15.gem
|
|
179
179
|
- pkg/fluent-plugin-datadog-log-0.1.0.rc16.gem
|
|
180
|
+
- pkg/fluent-plugin-datadog-log-0.1.0.rc17.gem
|
|
181
|
+
- pkg/fluent-plugin-datadog-log-0.1.0.rc18.gem
|
|
180
182
|
- test/helper.rb
|
|
181
183
|
- test/plugin/base_test.rb
|
|
182
184
|
- test/plugin/constants.rb
|