Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#3151](https://github.com/open-telemetry/opentelemetry-python/pull/3151))
- Bump min required api version for OTLP exporters
([#3156](https://github.com/open-telemetry/opentelemetry-python/pull/3156))
- deprecate jaeger exporters
([#3158](https://github.com/open-telemetry/opentelemetry-python/pull/3158))

## Version 1.15.0/0.36b0 (2022-12-09)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
import logging
from os import environ
from typing import Optional
from deprecated import deprecated

from grpc import ChannelCredentials, RpcError, insecure_channel, secure_channel

Expand Down Expand Up @@ -110,6 +111,10 @@ class JaegerExporter(SpanExporter):
timeout: Maximum time the Jaeger exporter should wait for each batch export.
"""

@deprecated(
version="1.16.0",
reason="Since v1.35, the Jaeger supports OTLP natively. Please use the OTLP exporter instead. Support for this exporter will end July 2023.",
)
def __init__(
self,
collector_endpoint: Optional[str] = None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@
from os import environ
from typing import Optional

from deprecated import deprecated

from opentelemetry import trace
from opentelemetry.exporter.jaeger.thrift.gen.jaeger import (
Collector as jaeger_thrift,
Expand Down Expand Up @@ -130,6 +132,10 @@ class JaegerExporter(SpanExporter):
timeout: Maximum time the Jaeger exporter should wait for each batch export.
"""

@deprecated(
version="1.16.0",
reason="Since v1.35, the Jaeger supports OTLP natively. Please use the OTLP exporter instead. Support for this exporter will end July 2023.",
)
def __init__(
self,
agent_host_name: Optional[str] = None,
Expand Down