Skip to content

Commit

Permalink
default value is invalid, was renamed (#755)
Browse files Browse the repository at this point in the history
* default value is invalid, was renamed

* Update CHANGELOG.md

Co-authored-by: Owais Lone <owais@users.noreply.github.com>
  • Loading branch information
alrex and owais authored Oct 19, 2021
1 parent f13b339 commit 22b069b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-distro/src/opentelemetry/distro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
2 changes: 1 addition & 1 deletion opentelemetry-distro/tests/test_distro.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ def test_default_configuration(self):
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)
)
6 changes: 3 additions & 3 deletions opentelemetry-instrumentation/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``

Expand Down

0 comments on commit 22b069b

Please sign in to comment.