chef-handler-datadog 0.12.0 → 0.12.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/chef/handler/datadog_chef_metrics.rb +1 -1
- data/lib/chef_handler_datadog.rb +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: 26dd78bfdbd6e79d3544943a1bf0030c3d8636328da7dc666cb4963f4aee498b
|
4
|
+
data.tar.gz: a78ec6092d2cb6b5d50e8271ae227b810e214f1430cc498d2cdb9e4aee317b48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca5d68347a7e8f2bff5d7e973421558a72e910a86dbfcb88bd08d3888e00e6135982df39eb51927e312a444c7a9cdd4797c7f121625963b2a9c45ef0707880b1
|
7
|
+
data.tar.gz: 688cc56577e5097111fc309a4e74e6814ae5cb1fca8ddedc1ea2fd49cefb01d6d14ee2ea205b6de254eee145e705eae2ff22fabed30b4faa534a2f89f589c19f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
Changes
|
2
2
|
=======
|
3
3
|
|
4
|
+
# 0.12.1 / 2019-09-30
|
5
|
+
|
6
|
+
* [BUGFIX] Fix standard error rescue in metrics sender. [#109][] [@rmoriz][]
|
7
|
+
|
4
8
|
# 0.12.0 / 2019-05-27
|
5
9
|
|
6
10
|
**This version drops the support of Chef < 12.7**
|
@@ -122,6 +126,7 @@ And all other versions were prior to this. See git history for more.
|
|
122
126
|
[#102]: https://github.com/DataDog/chef-handler-datadog/issues/102
|
123
127
|
[#103]: https://github.com/DataDog/chef-handler-datadog/issues/103
|
124
128
|
[#104]: https://github.com/DataDog/chef-handler-datadog/issues/104
|
129
|
+
[#109]: https://github.com/DataDog/chef-handler-datadog/issues/109
|
125
130
|
[@ABrehm264]: https://github.com/ABrehm264
|
126
131
|
[@DanielMuller]: https://github.com/DanielMuller
|
127
132
|
[@DanielRedOak]: https://github.com/DanielRedOak
|
@@ -140,6 +145,7 @@ And all other versions were prior to this. See git history for more.
|
|
140
145
|
[@mstepniowski]: https://github.com/mstepniowski
|
141
146
|
[@olivielpeau]: https://github.com/olivielpeau
|
142
147
|
[@owen]: https://github.com/owen
|
143
|
-
[@remh]: https://github.com/remh
|
144
148
|
[@remeh]: https://github.com/remeh
|
149
|
+
[@remh]: https://github.com/remh
|
145
150
|
[@rlaveycal]: https://github.com/rlaveycal
|
151
|
+
[@rmoriz]: https://github.com/rmoriz
|
@@ -50,6 +50,6 @@ class DatadogChefMetrics
|
|
50
50
|
rescue Errno::ECONNREFUSED, Errno::ETIMEDOUT => e
|
51
51
|
Chef::Log.warn("Could not send metrics to Datadog. Connection error:\n" + e)
|
52
52
|
rescue StandardError => e
|
53
|
-
Chef::Log.warn("Could not determine whether chef run metrics were successfully submitted to Datadog
|
53
|
+
Chef::Log.warn("Could not determine whether chef run metrics were successfully submitted to Datadog. Error:\n#{e}")
|
54
54
|
end
|
55
55
|
end # end class DatadogChefMetrics
|
data/lib/chef_handler_datadog.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-handler-datadog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Fiedler
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2019-
|
13
|
+
date: 2019-09-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: dogapi
|
@@ -256,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
256
256
|
version: '0'
|
257
257
|
requirements: []
|
258
258
|
rubyforge_project:
|
259
|
-
rubygems_version: 2.7.
|
259
|
+
rubygems_version: 2.7.10
|
260
260
|
signing_key:
|
261
261
|
specification_version: 4
|
262
262
|
summary: Chef Handler reports events and metrics to Datadog
|