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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View File

@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.3.0-0.22b0...HEAD)
- `opentelemetry-sdk-extension-aws` Update AWS entry points to match spec
([#566](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/566))
- Include Flask 2.0 as compatible with existing flask instrumentation
([#545](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/545))

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: