Update AWS entry points to match spec (#566)
This commit is contained in:
parent
b2802ddd21
commit
bddd0825bf
|
|
@ -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).
|
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)
|
## [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
|
- Include Flask 2.0 as compatible with existing flask instrumentation
|
||||||
([#545](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/545))
|
([#545](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/545))
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
Or by setting this propagator in your instrumented application:
|
||||||
|
|
|
||||||
|
|
@ -42,9 +42,9 @@ install_requires =
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
opentelemetry_propagator =
|
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 =
|
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]
|
[options.extras_require]
|
||||||
test =
|
test =
|
||||||
|
|
|
||||||
|
|
@ -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:
|
Or by setting this propagator in your instrumented application:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue