Skip to content

Commit d06f155

Browse files
committed
Releasing 4.1.0
1 parent 01fdab5 commit d06f155

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
[//]: # (comment: Don't forget to update statsd/telemetry.go:clientVersionTelemetryTag when releasing a new version)
44

5+
# 4.1.0 / 2020-10-23
6+
7+
[BETA BUGFIX] Ignore sampling rate when client side aggregation is enabled (for Gauge, Count and Set). See [#170][].
8+
[FEATURE] Adding a new option `WithDevMode()`, to send more telemetry metrics to ease troubleshooting issues. See [#169][].
9+
10+
511
# 4.0.1 / 2020-10-07
612

713
### Notes
@@ -236,6 +242,8 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
236242
[#156]: https://github.com/DataDog/datadog-go/pull/156
237243
[#157]: https://github.com/DataDog/datadog-go/pull/157
238244
[#163]: https://github.com/DataDog/datadog-go/pull/163
245+
[#169]: https://github.com/DataDog/datadog-go/pull/169
246+
[#170]: https://github.com/DataDog/datadog-go/pull/170
239247
[@Aceeri]: https://github.com/Aceeri
240248
[@Jasrags]: https://github.com/Jasrags
241249
[@KJTsanaktsidis]: https://github.com/KJTsanaktsidis

statsd/telemetry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var clientTelemetryTag = "client:go"
1919
/*
2020
clientVersionTelemetryTag is a tag identifying this specific client version.
2121
*/
22-
var clientVersionTelemetryTag = "client_version:4.0.1"
22+
var clientVersionTelemetryTag = "client_version:4.1.0"
2323

2424
type telemetryClient struct {
2525
c *Client

0 commit comments

Comments
 (0)