diff --git a/CHANGELOG.md b/CHANGELOG.md index 7086e819d..9e4ea43aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -## Changed +## [0.33.0] +### Changed - **Breaking Change**: Datadog blackhole now records received series under the `target/` prefix, matching the prometheus and expvar target metrics collectors. The `record` policy still matches on the unprefixed series name. - **Breaking Change**: Datadog blackhole does not record any target metrics by default. -## Added +### Added - Datadog blackhole now accepts a `record` policy (`all` / `disabled` / `series_to_keep: [...]`) controlling which received series are recorded as capture metrics. @@ -34,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `dogstatsd` generator now supports DogStatsD protocol v1.3 `|T` timestamps for count and gauge metrics via `timestamp.range` and `timestamp.probability`. -## Fixed +### Fixed - `dogstatsd` tag generation would silently fail with a misleading `StringGenerate` error for any `tag_length` whose range collapses after reserving one byte for the `:` separator -- every constant or single-value @@ -44,7 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 returns a `Validation` error naming the offending range instead of the opaque `StringGenerate`. -## Removed +### Removed - Removed no longer used `smaps.private_hugetlb.by_pathname` procfs observer metric. - Removed no longer used `smaps.swap_pss.by_pathname` procfs observer metric. diff --git a/Cargo.lock b/Cargo.lock index b48c2df21..d170f8a0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1908,7 +1908,7 @@ dependencies = [ [[package]] name = "lading" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "arrow-array", diff --git a/lading/Cargo.toml b/lading/Cargo.toml index a2ecd3e6c..e45c0f554 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lading" -version = "0.32.0" +version = "0.33.0" authors = [ "Brian L. Troutwine ", "George Hahn ",