Skip to content

Commit bddd082

Browse files
authored
Update AWS entry points to match spec (#566)
1 parent b2802dd commit bddd082

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.3.0-0.22b0...HEAD)
9+
- `opentelemetry-sdk-extension-aws` Update AWS entry points to match spec
10+
([#566](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/566))
911
- Include Flask 2.0 as compatible with existing flask instrumentation
1012
([#545](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/545))
1113

sdk-extension/opentelemetry-sdk-extension-aws/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This can be done by either setting this environment variable:
5353

5454
::
5555

56-
export OTEL_PROPAGATORS = aws_xray
56+
export OTEL_PROPAGATORS = xray
5757

5858

5959
Or by setting this propagator in your instrumented application:

sdk-extension/opentelemetry-sdk-extension-aws/setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ install_requires =
4242

4343
[options.entry_points]
4444
opentelemetry_propagator =
45-
aws_xray = opentelemetry.sdk.extension.aws.trace.propagation.aws_xray_format:AwsXRayFormat
45+
xray = opentelemetry.sdk.extension.aws.trace.propagation.aws_xray_format:AwsXRayFormat
4646
opentelemetry_id_generator =
47-
aws_xray = opentelemetry.sdk.extension.aws.trace.aws_xray_id_generator:AwsXRayIdGenerator
47+
xray = opentelemetry.sdk.extension.aws.trace.aws_xray_id_generator:AwsXRayIdGenerator
4848

4949
[options.extras_require]
5050
test =

sdk-extension/opentelemetry-sdk-extension-aws/src/opentelemetry/sdk/extension/aws/trace/propagation/aws_xray_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
3232
::
3333
34-
export OTEL_PROPAGATORS = aws_xray
34+
export OTEL_PROPAGATORS = xray
3535
3636
3737
Or by setting this propagator in your instrumented application:

0 commit comments

Comments
 (0)