statsd-instrument 2.3.0.beta6 → 2.3.0
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 +4 -4
- data/CHANGELOG.md +26 -0
- data/lib/statsd/instrument/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f244e5dabb79e64c2edfd235d4cc4bd9531ac7bd
|
|
4
|
+
data.tar.gz: cd20bcbf08956445cdfe160806e29601a5d14394
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a0112aa6a15b322e90fd9c4e3f4a21f15572d22f9bc24b69559fbc14c031d0b26ccda7cbfe046bd1b3d8d4db5be9605a56991392dc7c2e00bf3bc76aa80fde5
|
|
7
|
+
data.tar.gz: a84288e32f2ff1821ad3a6393c9cc3f846cfba2347a367c01fe8895706e06a4605d1a1a05e2a06b182d07fcca5d18155431dda476c89743b134088dbce8a8173
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ please at an entry to the "unreleased changes" section below.
|
|
|
5
5
|
|
|
6
6
|
### Unreleased changes
|
|
7
7
|
|
|
8
|
+
### Version 2.3.0
|
|
9
|
+
|
|
10
|
+
- No changes from `beta6`, distribtions are GA at DataDog so making the distribution changes GA in gem
|
|
11
|
+
|
|
12
|
+
### Version 2.3.0.beta6
|
|
13
|
+
|
|
14
|
+
- Fix invalidate socket on connectivity issues in UDP (#135)
|
|
15
|
+
|
|
16
|
+
### Version 2.3.0.beta5
|
|
17
|
+
|
|
18
|
+
- Fixes bug in return value for blocks used in distributions (#132)
|
|
19
|
+
|
|
20
|
+
### Version 2.3.0.beta4
|
|
21
|
+
|
|
22
|
+
- Add support for distribution to accept a block
|
|
23
|
+
- Add class method for defining and removing a distribution from a method (same as a measure)
|
|
24
|
+
- Refactor most instrument methods to reduce code duplication
|
|
25
|
+
|
|
26
|
+
### Version 2.3.0.beta3
|
|
27
|
+
|
|
28
|
+
- fix for `:as_dist` parameter in the `statsd_measure` class method
|
|
29
|
+
|
|
30
|
+
### Version 2.3.0.beta2
|
|
31
|
+
|
|
32
|
+
- Add support for specifying a measure to emit as a distribution using `:as_dist` parameter
|
|
33
|
+
|
|
8
34
|
### Version 2.3.0.beta
|
|
9
35
|
|
|
10
36
|
- Add support for beta, datadog specifc distribution metrics
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: statsd-instrument
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.0
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesse Storimer
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2018-
|
|
13
|
+
date: 2018-09-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake
|
|
@@ -158,9 +158,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
158
158
|
version: '0'
|
|
159
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
160
|
requirements:
|
|
161
|
-
- - "
|
|
161
|
+
- - ">="
|
|
162
162
|
- !ruby/object:Gem::Version
|
|
163
|
-
version:
|
|
163
|
+
version: '0'
|
|
164
164
|
requirements: []
|
|
165
165
|
rubyforge_project:
|
|
166
166
|
rubygems_version: 2.6.14
|