This document lists all the items currently deprecated in opentelemetry-cpp.
Deprecated items will be removed in the future.
See the deprecation-process
N/A
N/A
See Jaeger exporter
N/A
N/A
N/A
N/A
- Version: 1.8.2
- Date: 2023-01-31
- PR: [DEPRECATION] Deprecate the Jaeger exporter #1923
The Jaeger client libraries are deprecated, as announced here.
The initial Jaeger announcement in release 1.35 reads as:
" We plan to continue accepting pull requests and making new releases of Jaeger clients through the end of 2021. In January 2022 we will enter a code freeze period for 6 months, during which time we will no longer accept pull requests with new features, with the exception of security-related fixes. After that we will archive the client library repositories and will no longer accept new changes. "
At time of writing, Jan 2023, the client libraries have been archived 6 months ago already.
The following are deprecated and planned for removal:
- the API header
opentelemetry/trace/propagation/jaeger.h
, including:- the C++ class
JaegerPropagator
- the C++ class
- all the code located under
exporters/jaeger/
, including:- the jaeger exporter C++ class (
JaegerExporter
) - the related factory (
JaegerExporterFactory
) - the related options (
JaegerExporterOptions
)
- the jaeger exporter C++ class (
- the jaeger exporter library(
opentelemetry_exporter_jaeger_trace
) - the jaeger build options in CMake (
WITH_JAEGER
) - the dependency on thrift
Jaeger supports natively the OTLP protocol, starting with jaeger 1.35.
An application instrumented with opentelemetry needs to change how the SDK and exporter are configured to replace the Jaeger exporter with the OTLP exporter (both OTLP HTTP and OTLP GRPC are supported).
- Date: July, 2023
N/A