Update AWS entry points to match spec (#566)

This commit is contained in:
(Eliseo) Nathaniel Ruiz Nowell
2021-07-06 10:30:52 -07:00
committed by GitHub
parent b2802ddd21
commit bddd0825bf
4 changed files with 6 additions and 4 deletions

View File

@ -53,7 +53,7 @@ This can be done by either setting this environment variable:
::
export OTEL_PROPAGATORS = aws_xray
export OTEL_PROPAGATORS = xray
Or by setting this propagator in your instrumented application:

View File

@ -42,9 +42,9 @@ install_requires =
[options.entry_points]
opentelemetry_propagator =
aws_xray = opentelemetry.sdk.extension.aws.trace.propagation.aws_xray_format:AwsXRayFormat
xray = opentelemetry.sdk.extension.aws.trace.propagation.aws_xray_format:AwsXRayFormat
opentelemetry_id_generator =
aws_xray = opentelemetry.sdk.extension.aws.trace.aws_xray_id_generator:AwsXRayIdGenerator
xray = opentelemetry.sdk.extension.aws.trace.aws_xray_id_generator:AwsXRayIdGenerator
[options.extras_require]
test =

View File

@ -31,7 +31,7 @@ This can be done by either setting this environment variable:
::
export OTEL_PROPAGATORS = aws_xray
export OTEL_PROPAGATORS = xray
Or by setting this propagator in your instrumented application: