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
- Add deprecation flags to the various components to give notices in
users compilers.
- Add more definition around the deprecation in the README.
- Add a deprecation badge for crates.io.
Relates #995
As of [Jaeger 1.35.0], released in Sept 2022, ingesting the OpenTelemetry Protocol (OTLP) is stable and
9
+
as a result, language specific Jaeger exporters within OpenTelemetry SDKs are [recommended for deprecation by the OpenTelemetry project][jaeger-deprecation].
10
+
More information and examples of using OTLP with Jaeger can be found in [Introducing native support for OpenTelemetry in Jaeger][jaeger-otlp]
11
+
and [Exporting OTLP traces to Jaeger][exporting-otlp].
12
+
13
+
The opentelemetry-jaeger crate previously contained both a Jaeger exporter and a Jaeger propagator.
14
+
To prepare for the deprecation of the Jaeger exporter, the Jaeger propagator implementation has been migrated to
[Jaeger](https://www.jaegertracing.io/) supports the OpenTelemetry Protocol (OTLP) as of [v1.35.0](https://github.com/jaegertracing/jaeger/releases/tag/v1.35.0) and as a result, language specific Jaeger exporters within OpenTelemetry SDKs are [recommended for deprecation by the OpenTelemetry project](https://opentelemetry.io/blog/2022/jaeger-native-otlp/). More information and examples of using OTLP with Jaeger can be found in [Introducing native support for OpenTelemetry in Jaeger](https://medium.com/jaegertracing/introducing-native-support-for-opentelemetry-in-jaeger-eb661be8183c) and [Exporting OTLP traces to Jaeger](https://github.com/open-telemetry/opentelemetry-rust/tree/main/examples/tracing-jaeger).
17
-
18
-
The opentelemetry-jaeger crate previously contained both a Jaeger exporter and a Jaeger propagator. To prepare for the deprecation of the Jaeger exporter, the Jaeger propagator implementation has been migrated to [opentelemetry-jaeger-propagator](../opentelemetry-jaeger-propagator/).
19
-
20
30
## Overview
21
31
22
32
[`OpenTelemetry`] is a collection of tools, APIs, and SDKs used to instrument,
@@ -28,6 +38,11 @@ Jaeger `agent` or `collector` endpoint for processing and visualization.
#[allow(clippy::field_reassign_with_default)]// make sure when collector_cilent and wasm_collector_client are both set. We will create a wasm type client
197
+
#[allow(clippy::field_reassign_with_default)]
198
+
// make sure when collector_cilent and wasm_collector_client are both set. We will create a wasm type client
199
+
#[deprecated(
200
+
since = "0.21.0",
201
+
note = "Please Migrate to opentelemetry-otlp exporter."
0 commit comments