fluent-plugin-datadog-log 0.1.0.rc17 → 0.1.0.rc18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94226f62061a3ab5bbeb3540e27cca58c26340df
4
- data.tar.gz: 7eeb84c8e8851533d3ca5cb137d507e9720bf284
3
+ metadata.gz: ea5367ecfa2d3cfd858c8c3854328f087dc02dc2
4
+ data.tar.gz: 4a8cb53397ceba0e643919df3b72f0f36fa3f4fc
5
5
  SHA512:
6
- metadata.gz: 6662968a1b1a4d1ec4fa516a0c1fdc9b20a1b8103b3b30b9ef5524dfaaeadd9c518c11e7f69bfda9d408ea90d61b95fda1e58f200b75c5a9e317a8ac6ab99cfa
7
- data.tar.gz: bce3813784076d4db4d17112c67dcf9f01056ac19a5b7206ad5963e22c745296032731967858fd41446f5979c52e8777b05f3a65d306e969e1a223103a72b5af
6
+ metadata.gz: c54999044447974a62210989f775694e5a75d85377edd57a379072c5ebd652fcc2f06aca44327d491185bd0e478d998e288e52e5a03068cb39974e4b47e4dff1
7
+ data.tar.gz: 1eeba1a6b4ddbfdee6483288f0ec6cb0d44e3768bf8ce174369ec60e92afb0844025d4840bdeb69bb20d8a1c68e225682a8c8c87e2e0f9905e748e100d57ad61
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent-plugin-datadog-log (0.1.0.rc17)
4
+ fluent-plugin-datadog-log (0.1.0.rc18)
5
5
  fluentd (~> 1.0.0)
6
6
  json (~> 1.8)
7
7
  net_tcp_client (~> 2.0.1)
@@ -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.rc17'
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
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.rc17
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-18 00:00:00.000000000 Z
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