Skip to content

Commit

Permalink
Use opentelemetry-proto 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
owais committed Mar 6, 2021
1 parent 1af9f87 commit 11737c8
Show file tree
Hide file tree
Showing 15 changed files with 1,240 additions and 1,125 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,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/v0.18b0...HEAD)
- Update OTLP exporter to use OTLP proto `0.7.0`
([#1674](https://github.com/open-telemetry/opentelemetry-python/pull/1674))

### Added
- Add `max_attr_value_length` support to Jaeger exporter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,12 @@ def _translate_data(
sdk_resource_instrumentation_library_spans.keys()
):
if sdk_span.instrumentation_info is not None:
instrumentation_library_spans = InstrumentationLibrarySpans(
instrumentation_library=InstrumentationLibrary(
name=sdk_span.instrumentation_info.name,
version=sdk_span.instrumentation_info.version,
instrumentation_library_spans = (
InstrumentationLibrarySpans(
instrumentation_library=InstrumentationLibrary(
name=sdk_span.instrumentation_info.name,
version=sdk_span.instrumentation_info.version,
)
)
)

Expand Down
4 changes: 3 additions & 1 deletion opentelemetry-proto/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@
with open(VERSION_FILENAME) as f:
exec(f.read(), PACKAGE_INFO)

setuptools.setup(version=PACKAGE_INFO["__version__"],)
setuptools.setup(
version=PACKAGE_INFO["__version__"],
)

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 11737c8

Please sign in to comment.