Update change log (#362)

* Update change log

* One more

* Update
This commit is contained in:
Trask Stalnaker 2022-06-17 15:37:52 -07:00 committed by GitHub
parent f925f74f9d
commit fe0118f52f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -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"

View File

@ -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.