Skip to content

Commit

Permalink
Remove references to Jaeger exporters
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Nov 23, 2023
1 parent ed98861 commit 91f91eb
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 98 deletions.
4 changes: 0 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ exclude =
venv*/
target
__pycache__
exporter/opentelemetry-exporter-jaeger-proto-grpc/src/opentelemetry/exporter/jaeger/proto/grpc/gen/
exporter/opentelemetry-exporter-jaeger-proto-grpc/build/*
exporter/opentelemetry-exporter-jaeger-thrift/src/opentelemetry/exporter/jaeger/thrift/gen/
exporter/opentelemetry-exporter-jaeger-thrift/build/*
exporter/opentelemetry-exporter-zipkin-proto-http/src/opentelemetry/exporter/zipkin/proto/http/v2/gen/
docs/examples/opentelemetry-example-app/src/opentelemetry_example_app/grpc/gen/
docs/examples/opentelemetry-example-app/build/*
Expand Down
4 changes: 0 additions & 4 deletions docs-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,3 @@ wrapt>=1.0.0,<2.0.0
# See https://github.com/pallets/markupsafe/issues/282
# breaking change introduced in markupsafe causes jinja, flask to break
markupsafe==2.0.1

# Jaeger generated protobufs do not currently support protobuf 4.x. This can be removed once
# they're regenerated.
protobuf~=3.19
35 changes: 0 additions & 35 deletions docs/exporter/jaeger/jaeger.rst

This file was deleted.

42 changes: 0 additions & 42 deletions docs/getting_started/jaeger_example.py

This file was deleted.

3 changes: 0 additions & 3 deletions eachdist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ packages=
opentelemetry-exporter-otlp-proto-grpc
opentelemetry-exporter-otlp-proto-http
opentelemetry-exporter-otlp
opentelemetry-exporter-jaeger-thrift
opentelemetry-exporter-jaeger-proto-grpc
opentelemetry-exporter-jaeger
opentelemetry-api

[prerelease]
Expand Down
4 changes: 2 additions & 2 deletions opentelemetry-sdk/tests/test_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,10 +826,10 @@ def test_otlp_exporter_conflict(self):
)
assert len(logs_context.output) == 1

@patch.dict(environ, {"OTEL_TRACES_EXPORTER": "jaeger,zipkin"})
@patch.dict(environ, {"OTEL_TRACES_EXPORTER": "zipkin"})
def test_multiple_exporters(self):
self.assertEqual(
sorted(_get_exporter_names("traces")), ["jaeger", "zipkin"]
sorted(_get_exporter_names("traces")), ["zipkin"]
)

@patch.dict(environ, {"OTEL_TRACES_EXPORTER": "none"})
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ exclude = '''
.venv.*|
target.*|
.*/build/lib/.*|
exporter/opentelemetry-exporter-jaeger-proto-grpc/src/opentelemetry/exporter/jaeger/proto/grpc/gen|
exporter/opentelemetry-exporter-jaeger-thrift/src/opentelemetry/exporter/jaeger/thrift/gen|
exporter/opentelemetry-exporter-zipkin-proto-http/src/opentelemetry/exporter/zipkin/proto/http/v2/gen|
opentelemetry-proto/src/opentelemetry/proto/.*/.*|
scripts
Expand Down
2 changes: 1 addition & 1 deletion rationale.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Public portions of the SDK (constructors, configuration, end-user interfaces) mu

## Core components

Core components refer to the set of components which are required as per the spec. This includes API, SDK, propagators (B3 and Jaeger) and exporters which are required by the specification. These exporters are OTLP, Jaeger and Zipkin.
Core components refer to the set of components which are required as per the spec. This includes API, SDK, propagators (B3 and Jaeger) and exporters which are required by the specification. These exporters are OTLP, and Zipkin.

## Mature or stable Signals

Expand Down
2 changes: 0 additions & 2 deletions scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ cov opentelemetry-sdk
cov exporter/opentelemetry-exporter-datadog
cov instrumentation/opentelemetry-instrumentation-flask
cov instrumentation/opentelemetry-instrumentation-requests
cov exporter/opentelemetry-exporter-jaeger-proto-grpc
cov exporter/opentelemetry-exporter-jaeger-thrift
cov instrumentation/opentelemetry-instrumentation-opentracing-shim
cov util/opentelemetry-util-http
cov exporter/opentelemetry-exporter-zipkin
Expand Down
3 changes: 0 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,6 @@ commands_pre =
python -m pip install -e {toxinidir}/tests/opentelemetry-test-utils[test]
python -m pip install -e {toxinidir}/shim/opentelemetry-opentracing-shim[test]
python -m pip install -e {toxinidir}/shim/opentelemetry-opencensus-shim[test]
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-jaeger-proto-grpc[test]
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-jaeger-thrift[test]
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-jaeger[test]
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-opencensus[test]
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-otlp-proto-common[test]
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-otlp-proto-grpc[test]
Expand Down

0 comments on commit 91f91eb

Please sign in to comment.