You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix default `service.name` + simplify configuration using Otel AutoConfig SDK 1.10 ResourceProvider SPI improvements (enable specifying the classloader making it compatible with Maven Plexus)
74
+
- Fix default `service.name` + simplify configuration using Otel AutoConfig SDK 1.10 ResourceProvider SPI improvements (enable specifying the classloader making it compatible with Maven Plexus)
* Use the [OpenTelemetry SDK Autoconfigure extension](https://github.com/open-telemetry/opentelemetry-java/tree/main/sdk-extensions/autoconfigure) to support more configuration setting. All the settings of the OTLP exporter are supported.
148
+
- Use the [OpenTelemetry SDK Autoconfigure extension](https://github.com/open-telemetry/opentelemetry-java/tree/main/sdk-extensions/autoconfigure) to support more configuration setting. All the settings of the OTLP exporter are supported.
@@ -154,7 +162,7 @@ All components updated to target OpenTelemetry SDK 1.5.0.
154
162
155
163
### JMX metrics
156
164
157
-
* Due to updating to OpenTelemetry SDK 1.5.0, many of the APIs presented for configuration have been changed so you will need to update any Groovy config scripts to match.
165
+
- Due to updating to OpenTelemetry SDK 1.5.0, many of the APIs presented for configuration have been changed so you will need to update any Groovy config scripts to match.
158
166
*`*ValueRecorder` has been replaced with `*Histogram`
159
167
*`*Sum` have been replaced with `*Counter`
160
168
*`*Observer` have been replaced with `*Callback` and do not return any object anymore
@@ -169,13 +177,13 @@ This library contains OTel extensions for use with [AWS X-Ray](https://docs.aws.
169
177
170
178
### JMX Metrics
171
179
172
-
* Because of numerous backwards incompatible changes in the OpenTelemetry Metrics data model, you will want to make sure you are running the latest version of the OpenTelemetry collector. Older versions will likely not process metrics correctly.
180
+
- Because of numerous backwards incompatible changes in the OpenTelemetry Metrics data model, you will want to make sure you are running the latest version of the OpenTelemetry collector. Older versions will likely not process metrics correctly.
and https://github.com/open-telemetry/opentelemetry-specification/pull/2047.
6
+
7
+
***ConsistentSampler**:
8
+
abstract base class of all consistent sampler implementations below
9
+
***ConsistentAlwaysOffSampler**:
10
+
see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling.md#always-off-sampler
11
+
***ConsistentAlwaysOnSampler**:
12
+
see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling.md#always-on-consistent-probability-sampler
13
+
***ConsistentComposedAndSampler**:
14
+
allows combining two consistent samplers and samples when both samplers would sample
15
+
***ConsistentComposedOrSampler**:
16
+
allows combining two consistent sampler and samples when at least one of both samplers would sample,
17
+
see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling.md#requirement-combine-multiple-consistent-probability-samplers-using-the-minimum-p-value
18
+
***ConsistentParentBasedSampler**:
19
+
see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling.md#parentconsistentprobabilitybased-sampler
20
+
***ConsistentProbabilityBasedSampler**:
21
+
see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling.md#consistentprobabilitybased-sampler
22
+
***ConsistentRateLimitingSampler**:
23
+
a rate limiting sampler based on exponential smoothing that dynamically adjusts the sampling
24
+
probability based on the estimated rate of spans occurring to satisfy a given rate of sampled spans
0 commit comments