Skip to content

Releases: DataDog/java-dogstatsd-client

v3.0.0

02 Nov 20:17
2dcd458
Compare
Choose a tag to compare

This release marks a new major release, and includes some breaking changes.
Most notably:

  • Client aggregation enabled by default for simple types.
  • Client aggregation flush interval changed to 2s.
  • Internal client telemetry metrics are now included in the client telemetry by default.
  • Removal of most overloaded constructors.

Many users will be able to upgrade seamlessly, while some might be required to make
changes due to the removal of an excessively overladed constructor anti-pattern.
Please refer to the [readme][readme configuration] for tips on how to migrate to
v3.x builder pattern to instantiate your client.

  • [DEPRECATE] Removing deprecated constructors. See #158
  • [FEATURE] Client aggregation enabled by default. See #164
  • [FEATURE] Allow clients to override metric sampling. See #162
  • [FEATURE] Client internal metrics included in telemetry by default. See #157
  • [BUGFIX] Set client side aggregation flush interval to 2s. See #154
  • [BUGFIX] Make text in events non-mandatory. See #160
  • [DOCS] Make text in events non-mandatory. See #160

v2.13.0

09 Jun 21:15
740e5ce
Compare
Choose a tag to compare
  • [FEATURE] Telemetry: adding developer mode: additional metrics. See #131
  • [IMPROVEMENT] Cleanup internal thread model. See #144
  • [IMPROVEMENT] All dogstatsd messages are EOL terminated. See #130
  • [IMPROVEMENT] Refactor version.properties to dedicated directory. See #147 (Thanks @cameronhotchkies
  • [IMPROVEMENT] Dev: make environment variable variables public. See #132 (Thanks @dbyron0)
  • [BUGFIX] Properly compute unicode event strings length. See #149
  • [DOCUMENTATION] Updated javadoc and README. See #139 and #136. (Thanks @snopoke and @gherceg)

v2.11.0

22 Dec 11:33
d4f3e11
Compare
Choose a tag to compare
  • [FEATURE] Aggregation: simple type client-side aggregation. See #121
  • [IMPROVEMENT] UDP+UDS: set better defaults for max packet size. See #125
  • [BUGFIX] Aggregator: fix thread leak + dont always start scheduler. See #129
  • [BUGFIX] Sampling: on counts to be disabled when aggregation is enabled. See #127
  • [BUGFIX] Processor: shutdown the executor on cue, dont leak. See #126
  • [DOCS] Aggregation: update with new aggregation instructions. See #122

v2.10.5

19 Nov 19:16
9c02475
Compare
Choose a tag to compare
  • [BUGFIX] Method override preventing previous processor leak fix from working. See #128

v2.10.4

12 Nov 17:39
a38b36a
Compare
Choose a tag to compare
  • [BUGFIX] Fix processor shutdown: shutdown on cue, prevent leak. See #126

v2.10.3

17 Jul 18:53
eb5d1d6
Compare
Choose a tag to compare
  • [BUGFIX] Fix library shutdown: use daemon threads for StatsDProcess + TimerTask. See #117 (Thanks @blevz)

v2.10.2

07 Jul 16:30
b33c725
Compare
Choose a tag to compare
  • [BUGFIX] Fix thread leak on shutdown: release StatsDSender executor. See #115 (Thanks @hanny24)

v2.10.1

26 May 20:52
52d272a
Compare
Choose a tag to compare
  • [BUGFIX] Fixes build issue on JDK8. No code changes.

v2.10.0

05 May 01:40
43db490
Compare
Choose a tag to compare
  • [FEATURE] Architecture revamp + non-blocking queue, improved performance. See #94
  • [FEATURE] Enable buffer pool, concurrent sending threads. See #95
  • [FEATURE] Adding dogstatsd telemetry to client. See #97
  • [FEATURE] DD_SERVICE; DD_ENV; DD_VERSION; DD_TAGS env vars support. See #107, #108, #111
  • [FEATURE] Allow different remote destination for telemetry. See #109
  • [IMPROVEMENT] Improved abstractions + better object construction. See #96
  • [IMPROVEMENT] Reduce number of allocations. Thanks @njhill. See #105
  • [DOCS] Container specific tags. See #110

v2.9.0

20 Feb 21:22
aba1c0d
Compare
Choose a tag to compare
  • [FIX] Add source type name to event payload. See #101
  • [IMPROVEMENT] Bump jnr-unixsocket to 0.27. See #102
  • [IMPROVEMENT] Bump maven-compiler-plugin to 3.8.1. See #93
  • [DOCS] Multiple documentation updates. See #91