From fe0118f52f19501e3e39435577a02cadd4859536 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Fri, 17 Jun 2022 15:37:52 -0700 Subject: [PATCH] Update change log (#362) * Update change log * One more * Update --- .github/scripts/draft-change-log-entries.sh | 4 ++++ CHANGELOG.md | 23 +++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/.github/scripts/draft-change-log-entries.sh b/.github/scripts/draft-change-log-entries.sh index ec24f57b..f26327f0 100755 --- a/.github/scripts/draft-change-log-entries.sh +++ b/.github/scripts/draft-change-log-entries.sh @@ -32,10 +32,14 @@ component_names["consistent-sampling/"]="Consistent sampling" component_names["jfr-streaming/"]="JFR streaming" component_names["jmx-metrics/"]="JMX metrics" component_names["maven-extension/"]="Maven extension" +component_names["micrometer-meter-provider/"]="Micrometer MeterProvider" component_names["runtime-attach/"]="Runtime attach" component_names["samplers/"]="Samplers" component_names["static-instrumenter/"]="Static instrumenter" +echo "## Unreleased" +echo + for component in */ ; do component_name=${component_names[$component]:=$component} echo "### $component_name" diff --git a/CHANGELOG.md b/CHANGELOG.md index d44aed1b..09fa267c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## Unreleased + +### Consistent sampling + +- ConsistentSampler does not unset p from tracestate when deciding not to sample + ([#350](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/350)) +- Add consistent reservoir sampling span processor + ([#352](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/352)) + +### Micrometer MeterProvider - New 🌟 + +This utility provides an implementation of `MeterProvider` which wraps a Micrometer `MeterRegistry` +and delegates the reporting of all metrics through Micrometer. This enables projects which already +rely on Micrometer and cannot currently migrate to OpenTelemetry Metrics to be able to report on +metrics that are reported through the OpenTelemetry Metrics API. + +### Runtime attach + +- Do not attach if not requested from the main method on the main thread + ([#354](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/354)) +- Fix "URI is not hierarchical" during runtime attachment + ([#359](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/359)) + ## Version 1.14.0 (2022-05-19) All components updated to target OpenTelemetry SDK 1.14.0.