File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,14 @@ component_names["consistent-sampling/"]="Consistent sampling"
3232component_names[" jfr-streaming/" ]=" JFR streaming"
3333component_names[" jmx-metrics/" ]=" JMX metrics"
3434component_names[" maven-extension/" ]=" Maven extension"
35+ component_names[" micrometer-meter-provider/" ]=" Micrometer MeterProvider"
3536component_names[" runtime-attach/" ]=" Runtime attach"
3637component_names[" samplers/" ]=" Samplers"
3738component_names[" static-instrumenter/" ]=" Static instrumenter"
3839
40+ echo " ## Unreleased"
41+ echo
42+
3943for component in * / ; do
4044 component_name=${component_names[$component]:= $component }
4145 echo " ### $component_name "
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Unreleased
4+
5+ ### Consistent sampling
6+
7+ - ConsistentSampler does not unset p from tracestate when deciding not to sample
8+ ([ #350 ] ( https://github.com/open-telemetry/opentelemetry-java-contrib/pull/350 ) )
9+ - Add consistent reservoir sampling span processor
10+ ([ #352 ] ( https://github.com/open-telemetry/opentelemetry-java-contrib/pull/352 ) )
11+
12+ ### Micrometer MeterProvider - New 🌟
13+
14+ This utility provides an implementation of ` MeterProvider ` which wraps a Micrometer ` MeterRegistry `
15+ and delegates the reporting of all metrics through Micrometer. This enables projects which already
16+ rely on Micrometer and cannot currently migrate to OpenTelemetry Metrics to be able to report on
17+ metrics that are reported through the OpenTelemetry Metrics API.
18+
19+ ### Runtime attach
20+
21+ - Do not attach if not requested from the main method on the main thread
22+ ([ #354 ] ( https://github.com/open-telemetry/opentelemetry-java-contrib/pull/354 ) )
23+ - Fix "URI is not hierarchical" during runtime attachment
24+ ([ #359 ] ( https://github.com/open-telemetry/opentelemetry-java-contrib/pull/359 ) )
25+
326## Version 1.14.0 (2022-05-19)
427
528All components updated to target OpenTelemetry SDK 1.14.0.
You can’t perform that action at this time.
0 commit comments