Skip to content

Releases: seek-oss/datadog-custom-metrics

v4.2.0

20 Mar 05:15
059b25e
Compare
Choose a tag to compare

4.2.0 (2023-03-20)

Features

  • createLambdaExtensionClient: Allow metrics propagation via Datadog Lambda Extension (#196) (059b25e)

v4.1.0

02 Dec 02:32
1a30960
Compare
Choose a tag to compare

4.1.0 (2022-12-02)

Features

v4.0.1

05 Apr 17:42
aefe55b
Compare
Choose a tag to compare

4.0.1 (2022-04-05)

Bug Fixes

v4.0.0

17 Nov 00:20
d5558b0
Compare
Choose a tag to compare

4.0.0 (2020-11-17)

Bug Fixes

  • createStatsDClient: Return full StatsD type (#51) (d5558b0)

BREAKING CHANGES

  • createStatsDClient: the StatsD class must be passed as the first argument of the factory function. The return type will reflect the input type, so you don't need to perform a type assertion as StatsD anymore.

    import { StatsD } from 'hot-shots';
    import { createStatsDClient } from 'seek-datadog-custom-metrics';
    
    - export const metricsClient = createStatsDClient(config, errHandler) as StatsD;
    + export const metricsClient = createStatsDClient(StatsD, config, errHandler);

v3.0.1

28 Sep 23:36
8981ab8
Compare
Choose a tag to compare

3.0.1 (2020-09-28)

Bug Fixes

v3.0.0

15 Jun 23:11
92fdca0
Compare
Choose a tag to compare

3.0.0 (2020-06-15)

Bug Fixes

  • deps: Avoid hot-shots type dependency (#7) (92fdca0)

BREAKING CHANGES

  • createStatsDClient now returns a cut-down MetricsClient interface.

    You can safely type-assert this into a hot-shots.StatsD instance:

    import { StatsD } from 'hot-shots';
    import { createStatsDClient } from 'seek-datadog-custom-metrics';
    
    export const metricsClient = createStatsDClient({ ... }) as StatsD;

v2.3.0

15 Jun 08:42
d0c8f94
Compare
Choose a tag to compare

2.3.0 (2020-06-15)

Features

  • MetricsClient: Add no-op metrics client (#6) (d0c8f94)

v2.2.4

10 Jun 04:29
536ad70
Compare
Choose a tag to compare

2.2.4 (2020-06-10)

Bug Fixes

  • types: Point to correct types directory (#5) (536ad70)

v2.2.3

10 Jun 02:39
44c25ea
Compare
Choose a tag to compare

2.2.3 (2020-06-10)

Bug Fixes

v2.2.2

09 Jun 10:15
4858886
Compare
Choose a tag to compare

Starting point for Semantic Release.