Is your feature request related to a problem? Please describe.
openTracing/opentracer-go was archived on 05/23/2023, but Cadence is still using it in WorkerOptions:
import (
"github.com/opentracing/opentracing-go"
)
type WorkerOptions struct {
Tracer opentracing.Tracer
}
Today, we cannot use the v2 library for Datadog’s tracers because Datadog removed support for OpenTracing (OpenTracing merged with OpenCensus to form OpenTelemetry). This also raises security concerns, as we are relying on libraries that are no longer maintained, both for Datadog and OpenTracing.
Proposed Solution
Consider switching from OpenTracing to OpenTelemetry, or allow users to choose their own tracer library.
Is your feature request related to a problem? Please describe.
openTracing/opentracer-go was archived on 05/23/2023, but Cadence is still using it in
WorkerOptions:Today, we cannot use the v2 library for Datadog’s tracers because Datadog removed support for OpenTracing (OpenTracing merged with OpenCensus to form OpenTelemetry). This also raises security concerns, as we are relying on libraries that are no longer maintained, both for Datadog and OpenTracing.
Proposed Solution
Consider switching from OpenTracing to OpenTelemetry, or allow users to choose their own tracer library.