default value is invalid, was renamed (#755)
* default value is invalid, was renamed * Update CHANGELOG.md Co-authored-by: Owais Lone <owais@users.noreply.github.com>
This commit is contained in:
parent
f13b339a91
commit
22b069baae
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -6,15 +6,23 @@ 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.6.1-0.25b1...HEAD)
|
||||
|
||||
### Changed
|
||||
|
||||
- `opentelemetry-sdk-extension-aws` & `opentelemetry-propagator-aws` Release AWS Python SDK Extension as 2.0.1 and AWS Propagator as 1.0.1
|
||||
([#753](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/753))
|
||||
|
||||
### Fixed
|
||||
|
||||
- `opentelemetry-distro` uses the correct entrypoint name which was updated in the core release of 1.6.0 but the distro was not updated with it
|
||||
([#755](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/755))
|
||||
|
||||
## [1.6.1-0.25b1](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.6.1-0.25b1) - 2021-10-18
|
||||
|
||||
### Changed
|
||||
- `opentelemetry-util-http` no longer contains an instrumentation entrypoint and will not be loaded
|
||||
automatically by the auto instrumentor.
|
||||
([#745](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/745))
|
||||
automatically by the auto instrumentor.
|
||||
([#745](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/745))
|
||||
- `opentelemetry-instrumentation-pika` Bugfix use properties.headers. It will prevent the header injection from raising.
|
||||
([#740](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/740))
|
||||
- `opentelemetry-instrumentation-botocore` Add extension for DynamoDB
|
||||
|
|
|
|||
|
|
@ -31,4 +31,4 @@ class OpenTelemetryDistro(BaseDistro):
|
|||
|
||||
# pylint: disable=no-self-use
|
||||
def _configure(self, **kwargs):
|
||||
os.environ.setdefault(OTEL_TRACES_EXPORTER, "otlp_proto_grpc_span")
|
||||
os.environ.setdefault(OTEL_TRACES_EXPORTER, "otlp_proto_grpc")
|
||||
|
|
|
|||
|
|
@ -34,5 +34,5 @@ class TestDistribution(TestCase):
|
|||
self.assertIsNone(os.environ.get(OTEL_TRACES_EXPORTER))
|
||||
distro.configure()
|
||||
self.assertEqual(
|
||||
"otlp_proto_grpc_span", os.environ.get(OTEL_TRACES_EXPORTER)
|
||||
"otlp_proto_grpc", os.environ.get(OTEL_TRACES_EXPORTER)
|
||||
)
|
||||
|
|
|
|||
|
|
@ -72,12 +72,12 @@ Well known trace exporter names:
|
|||
- jaeger_thrift
|
||||
- opencensus
|
||||
- otlp
|
||||
- otlp_proto_grpc_span
|
||||
- otlp_proto_http_span
|
||||
- otlp_proto_grpc
|
||||
- otlp_proto_http
|
||||
- zipkin_json
|
||||
- zipkin_proto
|
||||
|
||||
``otlp`` is an alias for ``otlp_proto_grpc_span``.
|
||||
``otlp`` is an alias for ``otlp_proto_grpc``.
|
||||
|
||||
* ``--id-generator`` or ``OTEL_PYTHON_ID_GENERATOR``
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue