FAQ: OpenTelemetry & Distributed tracing

hi @mohamed.hamdy!

Jaeger hasn’t been de-supported, only the Jaeger exporter. I have noticed we need to update our Jaeger documentation.

Here are the information you need:

:warning: Jaeger exporter has been deprecated on otel collector v0.85.0 (latest).

If you have your collector config with something like

exporters:
  jaeger:
    endpoint: jaeger-all-in-one:14250
    tls:
      insecure: true

you need to replace the exporter type to otlp since Jaeger supports the protocol by default

exporters:
  otlp:
    endpoint: jaeger-all-in-one:4317
    tls:
      insecure: true

Hope this help, I will make sure we update our documentation as well!
Sonja

2 Likes