- Version update to 1.1.0
+ Added
- Added py.typed file to every package. This should resolve a bunch of mypy
errors for users. (#1720)
- Add auto generated trace and resource attributes semantic conventions (#1759)
- Added SpanKind to should_sample parameters, suggest using parent span
context's tracestate instead of manually passed in tracestate in
should_sample (#1764)
- Added experimental HTTP back propagators. (#1762)
- Adjust B3Format propagator to be spec compliant by not modifying context
when propagation headers are not present/invalid/empty (#1728)
- Silence unnecessary warning when creating a new Status object without description. (#1721)
- Update bootstrap cmd to use exact version when installing instrumentation packages. (#1722)
- Fix B3 propagator to never return None. (#1750)
- Added ProxyTracerProvider and ProxyTracer implementations to allow fetching provider
and tracer instances before a global provider is set up. (#1726)
- Added __contains__ to opentelementry.trace.span.TraceState. (#1773)
opentelemetry-opentracing-shim Fix an issue in the shim where a Span was being wrapped
in a NonRecordingSpan when it wasn't necessary. (#1776)
- OTLP Exporter now uses the scheme in the endpoint to determine whether to establish
a secure connection or not. (#1771)
- from version 1.10a0
+ This release adds the experimental metrics API/SDK and will include the following packages:
- opentelemetry-exporter-prometheus
- opentelemetry-api
- opentelemetry-sdk
- opentelemetry-exporter-otlp-proto-grpc
- opentelemetry-exporter-otlp
- from version 1.0.0
+ NOTE: As part of this release, all old versions have been removed for packages
OBS-URL: https://build.opensuse.org/request/show/891317
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-opentelemetry-api?expand=0&rev=11
238 lines
12 KiB
Plaintext
238 lines
12 KiB
Plaintext
-------------------------------------------------------------------
|
|
Fri May 7 13:44:36 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Version update to 1.1.0
|
|
+ Added
|
|
- Added py.typed file to every package. This should resolve a bunch of mypy
|
|
errors for users. (#1720)
|
|
- Add auto generated trace and resource attributes semantic conventions (#1759)
|
|
- Added SpanKind to should_sample parameters, suggest using parent span
|
|
context's tracestate instead of manually passed in tracestate in
|
|
should_sample (#1764)
|
|
- Added experimental HTTP back propagators. (#1762)
|
|
- Adjust B3Format propagator to be spec compliant by not modifying context
|
|
when propagation headers are not present/invalid/empty (#1728)
|
|
- Silence unnecessary warning when creating a new Status object without description. (#1721)
|
|
- Update bootstrap cmd to use exact version when installing instrumentation packages. (#1722)
|
|
- Fix B3 propagator to never return None. (#1750)
|
|
- Added ProxyTracerProvider and ProxyTracer implementations to allow fetching provider
|
|
and tracer instances before a global provider is set up. (#1726)
|
|
- Added __contains__ to opentelementry.trace.span.TraceState. (#1773)
|
|
opentelemetry-opentracing-shim Fix an issue in the shim where a Span was being wrapped
|
|
in a NonRecordingSpan when it wasn't necessary. (#1776)
|
|
- OTLP Exporter now uses the scheme in the endpoint to determine whether to establish
|
|
a secure connection or not. (#1771)
|
|
- from version 1.10a0
|
|
+ This release adds the experimental metrics API/SDK and will include the following packages:
|
|
- opentelemetry-exporter-prometheus
|
|
- opentelemetry-api
|
|
- opentelemetry-sdk
|
|
- opentelemetry-exporter-otlp-proto-grpc
|
|
- opentelemetry-exporter-otlp
|
|
- from version 1.0.0
|
|
+ NOTE: As part of this release, all old versions have been removed for packages
|
|
prefixed with opentelemetry-ext-
|
|
+ Added
|
|
- Document how to work with fork process web server models(Gunicorn, uWSGI etc...)
|
|
(#1609)
|
|
- Add max_attr_value_length support to Jaeger exporter (#1633)
|
|
- Moved use_span from Tracer to opentelemetry.trace.use_span. (#1668)
|
|
- opentelemetry.trace.use_span() will now overwrite previously set status on span
|
|
in case an exception is raised inside the context manager and set_status_on_exception
|
|
is set to True. (#1668)
|
|
- Add udp_split_oversized_batches support to jaeger exporter (#1500)
|
|
+ Changed
|
|
- remove service_name from constructor of jaeger and opencensus exporters and
|
|
use of env variable OTEL_PYTHON_SERVICE_NAME ([#1669])(#1669)
|
|
- Rename IdsGenerator to IdGenerator (#1651)
|
|
- Make TracerProvider's resource attribute private (#1652)
|
|
- Rename Resource's create_empty to get_empty (#1653)
|
|
- Renamed BatchExportSpanProcessor to BatchSpanProcessor and SimpleExportSpanProcessor
|
|
to SimpleSpanProcessor (#1656)
|
|
- Rename DefaultSpan to NonRecordingSpan (#1661)
|
|
- Fixed distro configuration with OTEL_TRACES_EXPORTER env var set to otlp (#1657)
|
|
- Moving Getter, Setter and TextMapPropagator out of opentelemetry.trace.propagation
|
|
and into opentelemetry.propagators (#1662)
|
|
- Rename BaggagePropagator to W3CBaggagePropagator (#1663)
|
|
- Rename JaegerSpanExporter to JaegerExporter and rename ZipkinSpanExporter to
|
|
ZipkinExporter (#1664)
|
|
- Expose StatusCode from the opentelemetry.trace module (#1681)
|
|
- Status now only sets description when status_code is set to StatusCode.ERROR (#1673)
|
|
- Update OTLP exporter to use OTLP proto 0.7.0 (#1674)
|
|
- Remove time_ns from API and add a warning for older versions of Python (#1602)
|
|
- Hide implementation classes/variables in api/sdk (#1684)
|
|
- Cleanup OTLP exporter compression options, add tests (#1671)
|
|
- Initial documentation for environment variables (#1680)
|
|
- Change Zipkin exporter to obtain service.name from span (#1696)
|
|
- Split up opentelemetry-exporter-jaeger package into opentelemetry-exporter-jaeger-proto-grpc
|
|
and opentelemetry-exporter-jaeger-thrift packages to reduce dependencies for each one. (#1694)
|
|
- Added opentelemetry-exporter-otlp-proto-grpc and changed opentelemetry-exporter-otlp to
|
|
install it as a dependency. This will allow for the next package/protocol to also be in
|
|
its own package. (#1695)
|
|
- Change Jaeger exporters to obtain service.name from span (#1703)
|
|
- Fixed an unset OTEL_TRACES_EXPORTER resulting in an error (#1707)
|
|
- Split Zipkin exporter into opentelemetry-exporter-zipkin-json and opentelemetry-exporter-zipkin-
|
|
proto-http packages to reduce dependencies. The opentelemetry-exporter-zipkin installs both. (#1699)
|
|
- Make setters and getters optional (#1690)
|
|
+ Removed
|
|
- Removed unused get_hexadecimal_trace_id and get_hexadecimal_span_id methods. (#1675)
|
|
- Remove OTEL_EXPORTER_*_ INSECURE env var (#1682)
|
|
- Removing support for Python 3.5 (#1706)
|
|
- from version 0.19b0
|
|
+ Changed
|
|
- remove service_name from constructor of jaeger and opencensus exporters and
|
|
use of env variable OTEL_PYTHON_SERVICE_NAME ([#1669])(#1669)
|
|
- Rename IdsGenerator to IdGenerator (#1651)
|
|
+ Removed
|
|
- Removing support for Python 3.5 (#1706)
|
|
- from version 0.18b0
|
|
+ Release only affects Opentelemetry components listed below:
|
|
- opentelemetry-distro
|
|
- opentelemetry-exporter-opencensus
|
|
- opentelemetry-instrumentation
|
|
- opentelemetry-opentracing-shim
|
|
+ Added
|
|
- Add urllib to opentelemetry-bootstrap target list ([#1584])(#1584)
|
|
- from version 1.0.0rc1
|
|
+ Release only affects core Opentelemetry components listed below:
|
|
- opentelemetry-api
|
|
- opentelemetry-sdk
|
|
- opentelemetry-exporter-otlp
|
|
- opentelemetry-exporter-jaeger
|
|
- opentelemetry-exporter-zipkin
|
|
- opentelemetry-proto
|
|
- opentelemetry-propagator-b3
|
|
- opentelemetry-propagator-jaeger
|
|
+ Changed
|
|
- Tracer and Meter provider environment variables are now consistent with the rest (#1571])
|
|
- Rename TRACE_ to TRACES_ for environment variables (#1595])
|
|
- Read-only Span attributes have been moved to ReadableSpan class (#1560)
|
|
+ Added
|
|
- Added end_on_exit argument to start_as_current_span (#1519])
|
|
- Add Span.set_attributes method to set multiple values with one call (#1520)
|
|
- Make sure Resources follow semantic conventions (#1480)
|
|
- Allow missing carrier headers to continue without raising AttributeError (#1545)
|
|
+ Removed
|
|
- Remove Configuration (#1523)
|
|
- Remove Metrics as part of stable, marked as experimental (#1568)
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jan 22 13:40:17 UTC 2021 - Benjamin Greiner <code@bnavigator.de>
|
|
|
|
- aiocontextvars is only needed for older Python 3.6. Python 3.7
|
|
and beyond provide everything in stdlib contextvars. See
|
|
upstreams' setup.cfg. Use rpm boolean dependencies to pull in
|
|
aiocontextvars only for python36 if available (TW) or python3 if
|
|
python3-base < 3.7 (Leap)
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jan 22 11:39:19 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Version update to 0.17b0
|
|
+ Added
|
|
- Add support for OTLP v0.6.0 (#1472)
|
|
- Add protobuf via gRPC exporting support for Jaeger (#1471)
|
|
- Add support for Python 3.9 (#1441)
|
|
- Added the ability to disable instrumenting libraries specified by
|
|
OTEL_PYTHON_DISABLED_INSTRUMENTATIONS env variable, when using
|
|
opentelemetry-instrument command. (#1461)
|
|
- Add `fields` to propagators (#1374)
|
|
- Add local/remote samplers to parent based sampler (#1440)
|
|
- Add support for OTEL_SPAN_{ATTRIBUTE_COUNT_LIMIT,EVENT_COUNT_LIMIT,LINK_COUNT_LIMIT}
|
|
(#1377)
|
|
- Return `None` for `DictGetter` if key not found (#1449)
|
|
- Added support for Jaeger propagator (#1219)
|
|
- Remove dependency on SDK from `opentelemetry-instrumentation` package. The
|
|
`opentelemetry-sdk` package now registers an entrypoint `opentelemetry_configurator`
|
|
to allow `opentelemetry-instrument` to load the configuration for the SDK (#1420)
|
|
- `opentelemetry-exporter-zipkin` Add support for array attributes in Span and
|
|
Resource exports (#1285)
|
|
- Added `__repr__` for `DefaultSpan`, added `trace_flags` to `__repr__` of
|
|
`SpanContext` (#1485)
|
|
- `opentelemetry-sdk` Add support for OTEL_TRACE_SAMPLER and OTEL_TRACE_SAMPLER_ARG
|
|
env variables (#1496)
|
|
- Adding `opentelemetry-distro` package to add default configuration for
|
|
span exporter to OTLP (#1482)
|
|
+ Changed
|
|
- `opentelemetry-exporter-zipkin` Updated zipkin exporter status code and error tag
|
|
(#1486)
|
|
- Recreate span on every run of a `start_as_current_span`-decorated function (#1451)
|
|
- `opentelemetry-exporter-otlp` Headers are now passed in as tuple as metadata, instead of a
|
|
string, which was incorrect. (#1507)
|
|
- `opentelemetry-exporter-jaeger` Updated Jaeger exporter status code tag (#1488)
|
|
- `opentelemetry-api` `opentelemety-sdk` Moved `idsgenerator` into sdk (#1514)
|
|
- `opentelemetry-sdk` The B3Format propagator has been moved into its own package:
|
|
`opentelemetry-propagator-b3` (#1513)
|
|
- Update default port for OTLP exporter from 55680 to 4317 (#1516)
|
|
- `opentelemetry-exporter-zipkin` Update boolean attribute value transformation (#1509)
|
|
- Move opentelemetry-opentracing-shim out of instrumentation folder (#1533)
|
|
- `opentelemetry-sdk` The JaegerPropagator has been moved into its own package:
|
|
`opentelemetry-propagator-jaeger` (#1525)
|
|
- `opentelemetry-exporter-jaeger`, `opentelemetry-exporter-zipkin` Update
|
|
InstrumentationInfo tag keys for Jaeger and Zipkin exporters (#1535)
|
|
- `opentelemetry-sdk` Remove rate property setter from TraceIdRatioBasedSampler (#1536)
|
|
- Fix TraceState to adhere to specs (#1502)
|
|
+ Removed
|
|
- `opentelemetry-api` Remove ThreadLocalRuntimeContext since python3.4 is not supported.
|
|
- from version 0.16b1
|
|
+ Added
|
|
- Add meter reference to observers (#1425)
|
|
- from version 0.16b0
|
|
+ Added
|
|
- Add optional parameter to `record_exception` method (#1314)
|
|
- Add pickle support to SpanContext class (#1380)
|
|
- Add instrumentation library name and version to OTLP exported metrics (#1418)
|
|
- Add Gzip compression for exporter (#1141)
|
|
- Support for v2 api protobuf format (#1318)
|
|
- Add IDs Generator as Configurable Property of Auto Instrumentation (#1404)
|
|
- Added support for `OTEL_EXPORTER` to the `opentelemetry-instrument` command
|
|
(#1036)
|
|
+ Changed
|
|
- Change temporality for Counter and UpDownCounter (#1384)
|
|
- OTLP exporter: Handle error case when no credentials supplied (#1366)
|
|
- Update protobuf versions (#1356)
|
|
- Add missing references to instrumented packages (#1416)
|
|
- Instrumentation Package depends on the OTel SDK (#1405)
|
|
- Allow samplers to modify tracestate (#1319)
|
|
- Update exception handling optional parameters, add escaped attribute to record_exception
|
|
(#1365)
|
|
- Rename `MetricRecord` to `ExportRecord` (#1367)
|
|
- Rename `Record` to `Accumulation` (#1373)
|
|
- Rename `Meter` to `Accumulator (#1372)
|
|
- Fix `ParentBased` sampler for implicit parent spans. Fix also `trace_state`
|
|
erasure for dropped spans or spans sampled by the `TraceIdRatioBased` sampler.
|
|
(#1394)
|
|
- See upstream CHANGELOG.md for the changes from 0.7b1 to 0.15b0
|
|
+ https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/CHANGELOG.md
|
|
- Drop tests.tar.bz2 tarball as tests are included in the upstream source now
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Apr 15 14:03:21 UTC 2020 - pgajdos@suse.com
|
|
|
|
- version update to 0.6b0
|
|
* Add support for lazy events and links (#474)
|
|
* Metrics API no longer uses LabelSet (#527)
|
|
* Adding is_remote flag to SpanContext, indicating when a span is remote (#516)
|
|
* Allow digit as first char in vendor specific trace state key (#511)
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Mar 27 14:01:45 UTC 2020 - pgajdos@suse.com
|
|
|
|
- version update to 0.5b0
|
|
* W3C Correlation Context Propagation
|
|
* OpenTelemetry Collector Exporter Integration for both metrics and traces
|
|
* Metrics SDK
|
|
* Global configuration module
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Mar 10 14:43:42 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Update to 0.4a1:
|
|
* various minor tweaks
|
|
|
|
-------------------------------------------------------------------
|
|
Sat Feb 22 15:59:29 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Initial build
|
|
+ Version 0.4a0
|