| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python313-opentelemetry-exporter-otlp | Distribution: openSUSE Tumbleweed |
| Version: 1.43.0 | Vendor: openSUSE |
| Release: 1.1 | Build date: Tue Jul 7 21:00:48 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 27899 | Source RPM: python-opentelemetry-exporter-otlp-1.43.0-1.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://github.com/open-telemetry/opentelemetry-python | |
| Summary: OpenTelemetry Collector Exporters | |
OpenTelemetry Collector Exporters This library is provided as a convenience to install all supported OpenTelemetry Collector Exporters. Currently it installs: * opentelemetry-exporter-otlp-proto-grpc * opentelemetry-exporter-otlp-proto-http In the future, additional packages will be available: * opentelemetry-exporter-otlp-json-http To avoid unnecessary dependencies, users should install the specific package once they've determined their preferred serialization and protocol method.
Apache-2.0
* Tue Jul 07 2026 Dirk Müller <dmueller@suse.com>
- update to 1.43.0:
* `opentelemetry-sdk`: add `add_metric_reader` /
`remove_metric_reader` public APIs to register / unregister
metric readers at runtime.
* `opentelemetry-exporter-prometheus`: add support for
configuring metric scope labels
* `opentelemetry-exporter-otlp-proto-grpc`: Add grpc error
details to the log message that's written when the grpc call
fails.
* `opentelemetry-exporter-http-transport`: add 'opentelemetry-
exporter-http-transport' package for HTTP exporters
* `opentelemetry-sdk`: Add `composite/development` samplers
support to declarative file configuration
* `opentelemetry-exporter-otlp-json-file`: Add OTLP JSON File
exporter implementation
* `opentelemetry-sdk`: add `_resolve_component` shared utility
for declarative config plugin loading, reducing boilerplate
in exporter factory functions
* `opentelemetry-sdk`: add pull metric reader support to
declarative file configuration, including Prometheus metric
reader via the `prometheus_development` config field
* `opentelemetry-proto-json`: update to use opentelemetry-proto
v1.10.0
* `opentelemetry-proto`: bump maximum supported protobuf
version to 7.x.x
* `opentelemetry-sdk`: add `ServiceInstanceIdResourceDetector`
for populating `service.instance.id`
* `opentelemetry-sdk`: declarative config loader now
recursively converts parsed dicts into typed dataclass
instances, including nested dataclasses, lists of
dataclasses, and enum values. End-to-end YAML/JSON → SDK
configuration now works via the factory functions.
* `opentelemetry-sdk`: add `configure_sdk(config)` to the
declarative configuration API. Single entry point that takes
a parsed `OpenTelemetryConfiguration`, builds the resource,
and applies the tracer/meter/logger providers and propagator
globally. Honors the top-level `disabled` flag.
* `opentelemetry-sdk`: the SDK configurator now honors the
`OTEL_CONFIG_FILE` environment variable. When set, the SDK
loads and applies the referenced declarative configuration
file (YAML or JSON) in place of the env-var-based init path.
* `opentelemetry-sdk`: update declarative config to use
`ServiceInstanceIdResourceDetector`
* `opentelemetry-exporter-otlp-proto-common`, `opentelemetry-
exporter-otlp-json-common`: encoders now always accept null,
and encode it as an empty `AnyValue` in accordance with the
spec.
* `opentelemetry-sdk`: validate the declarative config
`file_format` version — reject an unsupported major version
and warn on a newer minor version, per the configuration spec
versioning rules
* `opentelemetry-exporter-http-transport`: enable entry-point
loading of transport implementations
* ### Changed
* `opentelemetry-sdk`: introduce experimental entry points for
OpAMP agent integration
* `opentelemetry-api`: conditionally import entrypoints for
`opentelemetry_context` only if the `OTEL_PYTHON_CONTEXT` env
variable is defined, return `ContextVarsRuntimeContext`
otherwise
* `opentelemetry-sdk`: rename "known/unknown" to "built-
in/user-defined" terminology in declarative config component
loading code
* `opentelemetry-proto`: regenerate protobuf code from
opentelemetry-proto v1.10.0
* `opentelemetry-sdk`: remove unnecessary `copy` in Span
creation
* opentelemetry-sdk: remove unnecessary dict in set_attribute
method
* `opentelemetry-sdk`: inline the method
`_clean_attribute_value`
* Remove typing aliases deprecated in python 3.9 and replace
all usages of `typing.Union` and `typing.Optional` with `|`.
* opentelemetry-sdk: remove generator in the accessor for
links/events
* opentelemetry-api: remove unnecessary copy in iterator
* `opentelemetry-api`: update `EnvironmentGetter` to ignore
non-normalized environment variable names
* opentelemetry-sdk: update iterator for BoundedList
* opentelemetry-sdk: reduce lock contention in attributes
* opentelemetry-sdk: merge doesn't need a copy, dict already
does this
* `opentelemetry-api`: normalize empty environment propagation
names to `_` in `EnvironmentSetter` and `EnvironmentGetter`
* ### Fixed
* Add missing `.rst` files to Sphinx documentation build for
SDK logs, propagators, and exporter submodules.
* Preserve the random trace ID flag when creating child spans
instead of always setting the random trace id bit depending
on the available trace id generator.
* `opentelemetry-api`: fix SelectableGroups deprecation warning
* `opentelemetry-sdk`: make
`SynchronousMeasurementConsumer.consume_measurement` lock
free to avoid deadlocks
* Sat Jun 20 2026 Dirk Müller <dmueller@suse.com>
- update to 1.42.1:
* This is a patch release on the previous 1.42.0/0.63b0
release, fixing the issue(s) below.
* ### Fixed
* Preserve the random trace ID flag when creating child spans
instead of always setting the random trace id bit depending
on the available trace id generator.
- update to 1.42.0:
* ### Added
* `opentelemetry-api`, `opentelemetry-sdk`: add support for
'random-trace-id' flags in W3C traceparent header trace
flags. Implementations of `IdGenerator` that do randomly
generate the 56 least significant bits, should also implement
a `is_trace_id_random` methods that returns `True`.
* logs: add exception support to Logger emit and LogRecord
attributes
* `opentelemetry-exporter-otlp-proto-grpc`: make retryable gRPC
error codes configurable for gRPC exporters
* `opentelemetry-sdk`: Add
`create_logger_provider`/`configure_logger_provider` to
declarative file configuration, enabling LoggerProvider
instantiation from config files without reading env vars
* `opentelemetry-exporter-otlp-json-common`: add
'opentelemetry-exporter-otlp-json-common' package for OTLP
JSON exporters
* `opentelemetry-sdk`: Add `service` resource detector support
to declarative file configuration via
`detection_development.detectors[].service`
* `opentelemetry-docker-tests`: add docker-tests coverage of
`opentelemetry-exporter-otlp-proto-grpc` and `opentelemetry-
exporter-otlp-proto-http` metrics export
* Add `registry` keyword argument to `PrometheusMetricReader`
to allow passing a custom Prometheus registry
* Add WeaverLiveCheck test util
* `opentelemetry-sdk`: add `load_entry_point` shared utility to
declarative file configuration for loading plugins via entry
points; refactor propagator loading to use it
* `opentelemetry-sdk`: add sampler plugin loading to
declarative file configuration via the
`opentelemetry_sampler` entry point group, matching the
spec's PluginComponentProvider mechanism
* `opentelemetry-sdk`: add propagator plugin loading to
declarative file configuration via the
`opentelemetry_propagator` entry point group, matching the
spec's PluginComponentProvider mechanism
* `opentelemetry-sdk`: add exporter plugin loading to
declarative file configuration for all three signals (traces,
metrics, logs) via the `opentelemetry_*_exporter` entry point
groups, matching the spec's PluginComponentProvider mechanism
* `opentelemetry-sdk`: add generic resource detector plugin
loading to declarative file configuration via the
`opentelemetry_resource_detector` entry point group, matching
the spec's PluginComponentProvider mechanism
* `opentelemetry-sdk`: add `additional_properties` support to
generated config models via custom `datamodel-codegen`
template, enabling plugin/custom component names to flow
through typed dataclasses
* Add ability to selectively enable exporting of SDK internal
metrics with the `OTEL_PYTHON_SDK_INTERNAL_METRICS_ENABLED`
environment variable.
* ### Changed
* `opentelemetry-semantic-conventions`: use `X | Y` union
annotation
* `opentelemetry-api`: update `EnvironmentGetter` and
`EnvironmentSetter` to use normalized environment variable
names
* Apply fixes for `UP` ruff rule
* `opentelemetry-sdk`: only load entrypoints for resource
detectors if they are configured via
`OTEL_EXPERIMENTAL_RESOURCE_DETECTORS`
* ci: wait for tracecontext server readiness instead of a fixed
sleep in `scripts/tracecontext-integration-test.sh`
* Switch to SPDX license headers and add CI enforcement
* `opentelemetry-semantic-conventions`: Bump semantic
conventions to 1.41.1, this changes the metrics name of
`K8S_CONTAINER_CPU_LIMIT_UTILIZATION` and
`K8S_CONTAINER_CPU_REQUEST_UTILIZATION`.
* ### Removed
* `opentelemetry-api`: remove third-party importlib-metadata in
favor of standard library since Python >= 3.10 is now
required
* Drop Python 3.9 support
* ### Fixed
* `opentelemetry-sdk`: Allow declarative OTLP HTTP exporters to
map `compression: deflate` instead of rejecting it as
unsupported.
* Fix incorrect code example in `create_tracer()` docstring
* `opentelemetry-sdk`: Fix `ProcessResourceDetector` to use
`sys.orig_argv` so that `process.command`,
`process.command_line`, and `process.command_args` reflect
the original invocation for `python -m ` runs (where
`sys.argv[0]` is rewritten to the module path)
* `opentelemetry-sdk`: fix YAML structure injection via
environment variable substitution in declarative file
configuration; values containing newlines are now emitted as
quoted YAML scalars per spec requirement
* `opentelemetry-sdk`: Fix mutable attributes reference in
metrics, attributes passed to instrument `add`/`record` are
now copied so that subsequent mutations do not affect
recorded data points
* `opentelemetry-sdk`: make resource detector ordering
deterministic
* Fix incorrect type annotation on `detectors` parameter of
`get_aggregated_resources`
* `opentelemetry-api`: Enforce W3C Baggage size limits on
outbound propagation in `W3CBaggagePropagator.inject()`.
Previously only inbound extraction enforced limits; now
inject also caps entries at 180, individual pairs at 4096
bytes, and total header at 8192 bytes per the W3C Baggage
spec. The extract path max_pairs limit now counts all size-
valid entries rather than only successfully parsed ones.
* `opentelemetry-sdk`: fix multi-processor `force_flush`
skipping remaining processors when one returns `None`
* `opentelemetry-test-utils`: fix weaver live check hanging
when weaver log output fills the pipe buffer
* Sat Apr 25 2026 Dirk Müller <dmueller@suse.com>
- update to 1.41.1:
* This is a patch release on the previous 1.41.0/0.62b0
release
* Sun Apr 12 2026 Dirk Müller <dmueller@suse.com>
- update to 1.41.0:
* no changes
* Mon Mar 23 2026 Dirk Müller <dmueller@suse.com>
- update to 1.40.0:
* bump semantic-conventions to v1.40.0
* Add stale PR GitHub Action
* `opentelemetry-exporter-otlp-proto-grpc`: Fix re-
initialization of gRPC channel on UNAVAILABLE error
* `opentelemetry-exporter-prometheus`: Fix duplicate HELP/TYPE
declarations for metrics with different label sets
* Allow loading all resource detectors by setting
`OTEL_EXPERIMENTAL_RESOURCE_DETECTORS` to `*`
* `opentelemetry-sdk`: Fix the type hint of the `_metrics_data`
property to allow `None` (#4837).
* Regenerate opentelemetry-proto code with v1.9.0 release
* Add python 3.14 support
* Silence events API warnings for internal users
* Prevent possible endless recursion from happening in
`SimpleLogRecordProcessor.on_emit`, (#4799) and (#4867).
* Implement span start/end metrics
* Add environment variable carriers to API
* Add experimental composable rule based sampler
* Make ConcurrentMultiSpanProcessor fork safe
* `opentelemetry-exporter-otlp-proto-http`: fix retry logic and
error handling for connection failures in trace, metric, and
log exporters
* bump semantic-conventions to v1.39.0
* Sun Dec 28 2025 Dirk Müller <dmueller@suse.com>
- update to 1.39.1:
* Silence events API warnings for internal users
- update to 1.39.0:
* `opentelemetry-api`: Convert objects of any type other than
AnyValue in attributes to string to be exportable
* docs: Added sqlcommenter example
* build: bump ruff to 0.14.1
* Add `opentelemetry-exporter-credential-provider-gcp` as an
optional dependency to `opentelemetry-exporter-otlp-proto-
grpc` and `opentelemetry-exporter-otlp-proto-http`
* semantic-conventions: Bump to 1.38.0
* [BREAKING] Remove LogData and extend SDK LogRecord to have
instrumentation scope
* [BREAKING] Rename several classes from Log to LogRecord
* Mon Nov 17 2025 Dirk Müller <dmueller@suse.com>
- update to 1.38.0:
* Add `rstcheck` to pre-commit to stop introducing invalid RST
* logs: extend Logger.emit to accept separated keyword
arguments
* logs: add warnings for classes that would be deprecated and
renamed in 1.39.0
* Sun Sep 21 2025 Dirk Müller <dmueller@suse.com>
- update to 1.37.0:
* Add experimental composite samplers
* Add new environment variables to the SDK `OTEL_PYTHON_EXPORTE
R_OTLP_{HTTP/GRPC}_{METRICS/TRACES/LOGS}_CREDENTIAL_PROVIDER`
that can be used to inject a `requests.Session` or
`grpc.ChannelCredentials` object into OTLP exporters created
during auto instrumentation #4689.
* Filter duplicate logs out of some internal `logger`'s logs on
the export logs path that might otherwise endlessly log or
cause a recursion depth exceeded issue in cases where logging
itself results in an exception. (#4695).
* docs: linked the examples with their github source code
location and added Prometheus example
* Permit to override default HTTP OTLP exporters headers
* semantic-conventions: Bump to 1.37.0
* opentelemetry-sdk: fix handling of OTEL_ATTRIBUTE_COUNT_LIMIT
in logs
* Performance: Cache `importlib_metadata.entry_points`
* opentelemetry-sdk: fix calling Logger.emit with an API
LogRecord instance
- update to 1.36.0:
* Add missing Prometheus exporter documentation
* Overwrite logging.config.fileConfig and
logging.config.dictConfig to ensure the OTLP `LogHandler`
remains attached to the root logger. Fix a bug that can cause
a deadlock to occur over `logging._lock` in some cases
(#4636).
* otlp-http-exporter: set default value for param `timeout_sec`
in `_export` method
* Update OTLP gRPC/HTTP exporters: calling shutdown will now
interrupt exporters that are sleeping before a retry attempt,
and cause them to return failure immediately. Update
BatchSpan/LogRecordProcessors: shutdown will now complete
after 30 seconds of trying to finish exporting any buffered
telemetry, instead of continuing to export until all
telemetry was exported. (#4638).
- update to 1.35.0:
* Update OTLP proto to v1.7 #4645.
* Add `event_name` as a top level field in the `LogRecord`.
Events are now simply logs with the `event_name` field set,
the logs SDK should be used to emit events (#4652).
* Update OTLP gRPC/HTTP exporters: the export timeout is now
inclusive of all retries and backoffs. A +/-20% jitter was
added to all backoffs. A pointless 32 second sleep that
occurred after all retries had completed/failed was removed.
* Update ConsoleLogExporter.export to handle LogRecord's
containing bytes type in the body (#4614).
* opentelemetry-sdk: Fix invalid `type: ignore` that causes
mypy to ignore the whole file
* Add `span_exporter` property back to `BatchSpanProcessor`
class
* Fix license field in pyproject.toml files
* Update logger level to NOTSET in logs example
* Logging API accepts optional `context`; deprecates
`trace_id`, `span_id`, `trace_flags`. (#4597) and
* sdk: use context instead of trace_id,span_id for initializing
LogRecord
* Rename LogRecordProcessor.emit to on_emit
* Logging API hide std_to_otel function to convert python
logging severity to otel severity
* proto: relax protobuf version requirement to support v6
* Bump semantic-conventions to 1.36.0
- update to 1.34.0:
* typecheck: add sdk/resources and drop mypy
* Refactor `BatchLogRecordProcessor` to simplify code and make
the control flow more clear (#4562 and #4535).
* Use PEP702 for marking deprecations
* Refactor `BatchLogRecordProcessor` and `BatchSpanProcessor`
to simplify code and make the control flow more clear (#4562
[#4535], and #4580).
* Remove log messages from `BatchLogRecordProcessor.emit`, this
caused the program to crash at shutdown with a max recursion
error (#4586).
* Configurable max retry timeout for grpc exporter
* Mon May 26 2025 Nico Krapp <nico.krapp@suse.com>
- Update to 1.33.1
* Remove log messages from BatchLogRecordProcessor.emit, this caused the
program to crash at shutdown with a max recursion error
- Update to 1.33.0
* Fix intermittent Connection aborted error when using otlp/http exporters
* opentelemetry-sdk: use stable code attributes:
code.function -> code.function.name, code.lineno -> code.line.number,
code.filepath -> code.file.path
* Fix serialization of extended attributes for logs signal
* Handle OTEL_PROPAGATORS contains None
* docs: updated and added to the metrics and log examples
* Bump semantic conventions to 1.33.0
* Tue Feb 25 2025 Dirk Müller <dmueller@suse.com>
- update to 1.30.0:
* Always setup logs sdk,
OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED only
controls python `logging` module handler setup
* Add `attributes` field in `metrics.get_meter` wrapper
function
* Add Python 3.13 support
* sdk: don't log or print warnings when the SDK has been
disabled
* Fix span context manager typing by using ParamSpec from
typing_extensions
* Fix serialization of None values in logs body to match
1.31.0+ data model
* [BREAKING] semantic-conventions: Remove `opentelemetry.semcon
v.attributes.network_attributes.NETWORK_INTERFACE_NAME`
introduced by mistake in the wrong module.
* Add support for explicit bucket boundaries advisory for
Histograms
* semantic-conventions: Bump to 1.30.0
* Wed Jan 08 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 1.29.0
* Fix crash exporting a log record with None body
* Fix metrics export with exemplar and no context and filtering observable instruments
* Fix recursion error with sdk disabled and handler added to root logger
* sdk: setup EventLogger when OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED is set
* api: fix logging of duplicate EventLogger setup warning
* sdk: fix setting of process owner in ProcessResourceDetector
* sdk: fix serialization of logs severity_number field to int
* Remove `TestBase.assertEqualSpanInstrumentationInfo` method,
use `assertEqualSpanInstrumentationScope` instead
* sdk: instantiate lazily `ExemplarBucket`s in `ExemplarReservoir`s
* semantic-conventions: Bump to 1.29.0
- from version 1.28.0
* Removed superfluous py.typed markers and added them where they were missing
* Include metric info in encoding exceptions
* sdk: Add support for log formatting
* sdk: Add Host resource detector
* sdk: Implementation of exemplars
* Implement events sdk
* Update semantic conventions to version 1.28.0
* Add support to protobuf 5+ and drop support to protobuf 3 and 4
* Update environment variable descriptions to match signal
* Record logger name as the instrumentation scope name
* Fix memory leak in exporter and reader
* Drop `OTEL_PYTHON_EXPERIMENTAL_DISABLE_PROMETHEUS_UNIT_NORMALIZATION` environment variable
* Improve compatibility with other logging libraries that override
`LogRecord.getMessage()` in order to customize message formatting
* Wed Sep 11 2024 Dirk Müller <dmueller@suse.com>
- update to 1.27.0:
* Implementation of Events API
* Make log sdk add `exception.message` to logRecord for
exceptions whose argument is an exception not a string
message
* Fix use of `link.attributes.dropped`, which may not exist
* Added py.typed file to top-level module
* Drop Final annotation from Enum in semantic conventions
* Update log export example to not use root logger
* sdk: Add OS resource detector
* sdk: Accept non URL-encoded headers in
`OTEL_EXPORTER_OTLP_*HEADERS` to match other languages SDKs
* Update semantic conventions to version 1.27.0
* Add support to type bytes for OTLP AnyValue
* Export ExponentialHistogram and ExponentialHistogramDataPoint
* Implement Client Key and Certificate File Support for All
OTLP Exporters
* Remove `_start_time_unix_nano` attribute from
`_ViewInstrumentMatch` in favor of using `time_ns()` at the
moment when the aggregation object is created
- update to 1.26.0:
* Standardizing timeout calculation in measurement consumer
collect to nanoseconds
* optional scope attributes for logger creation
* optional scope attribute for tracer creation
* OTLP exporter is encoding invalid span/trace IDs in the logs
* Update sdk process resource detector `process.command_args`
attribute to also include the executable itself
* Fix `start_time_unix_nano` for delta collection for explicit
bucket histogram aggregation
* Fix `start_time_unix_nano` for delta collection for sum
aggregation
* Update opentracing and opencesus docs examples to not use
JaegerExporter
* Do not execute Flask Tests in debug mode
* When encountering an error encoding metric attributes in the
OTLP exporter, log the key that had an error.
* Fix `ExponentialHistogramAggregation`
* Log a warning when a `LogRecord` in `sdk/log` has dropped
attributes due to reaching limits
* Fix RandomIdGenerator can generate invalid Span/Trace Ids
* Add Python 3.12 to tox
* Improve resource field structure for LogRecords
* Update Semantic Conventions code generation scripts: - fix
namespace exclusion that resulted in dropping `os` and `net`
namespaces. - add `Final` decorator to constants to prevent
collisions - enable mypy and fix detected issues - allow to
drop specific attributes in preparation for Semantic
Conventions v1.26.0
* Update semantic conventions to version 1.26.0.
* Use semconv exception attributes for record exceptions in
spans
* Fix _encode_events assumes events.attributes.dropped exists
* Validate links at span creation
* Add attributes field in `MeterProvider.get_meter` and
`InstrumentationScope`
* Fix inaccessible `SCHEMA_URL` constants in `opentelemetry-
semantic-conventions`
* Mon Jun 17 2024 Dirk Müller <dmueller@suse.com>
- update to 1.25.0:
* Fix class BoundedAttributes to have RLock rather than Lock
* Remove thread lock by loading RuntimeContext explicitly.
* Add to_json method to ExponentialHistogram
* Fix exponential histograms
* Fix otlp exporter to export log_record.observed_timestamp
* Add capture the fully qualified type name for raised
exceptions in spans
* Prometheus exporter sort label keys to prevent duplicate
metrics when user input changes order
* Rename test objects to avoid pytest warnings
* Add span flags to OTLP spans and links
* Record links with invalid SpanContext if either attributes or
TraceState are not empty
* Add OpenTelemetry trove classifiers to PyPI packages ([#3913]
(https://github.com/open-telemetry/opentelemetry-
python/pull/3913))
* Fix prometheus metric name and unit conversion (#3924) -
this is a breaking change to prometheus metric names so they
comply with the specification. - you can temporarily opt-out
of the unit normalization by setting the environment variable
`OTEL_PYTHON_EXPERIMENTAL_DISABLE_PROMETHEUS_UNIT_NORMALIZATI
ON=true` - common unit abbreviations are converted to
Prometheus conventions (`s` -> `seconds`), following the
collector's implementation - repeated `_` are replaced with
a single `_` - unit annotations (enclosed in curly braces
like `{requests}`) are stripped away - units with slash are
converted e.g. `m/s` -> `meters_per_second`. - The
exporter's API is not changed
* Add parameters for Distros and configurators to configure
autoinstrumentation in addition to existing environment
variables. ([#3864] (https://github.com/open-
telemetry/opentelemetry-python/pull/3864))
* Fri May 03 2024 Dirk Müller <dmueller@suse.com>
- use modern python on sle15
* Wed Apr 03 2024 Dirk Müller <dmueller@suse.com>
- update to 1.24.0:
* Make create_gauge non-abstract method
* Make `tracer.start_as_current_span()` decorator work with
async functions
* Fix python 3.12 deprecation warning
* bump mypy to 0.982
* Add support for OTEL_SDK_DISABLED environment variable
* Fix ValueError message for PeriodicExportingMetricsReader
* Use `BaseException` instead of `Exception` in
`record_exception`
* Make span.record_exception more robust
* Fix license field in pyproject.toml files
* Sat Mar 23 2024 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- update to 1.23.0:
* Use Attribute rather than boundattribute in logrecord (#3567)
* Fix flush error when no LoggerProvider configured for LoggingHandler (#3608)
* Fix OTLPMetricExporter ignores preferred_aggregation property (#3603)
* Logs: set observed_timestamp field (#3565)
* Add missing Resource SchemaURL in OTLP exporters (#3652)
* Fix loglevel warning text (#3566)
* Prometheus Exporter string representation for target_info labels (#3659)
* Logs: ObservedTimestamp field is missing in console exporter output (#3564)
* Fix explicit bucket histogram aggregation (#3429)
* Add code.lineno, code.function and code.filepath to all logs (#3645)
* Add Synchronous Gauge instrument (#3462)
* Drop support for 3.7 (#3668)
* Include key in attribute sequence warning (#3639)
* Upgrade markupsafe, Flask and related dependencies to dev and test
environments (#3609)
* Handle HTTP 2XX responses as successful in OTLP exporters (#3623)
* Improve Resource Detector timeout messaging (#3645)
* Add Proxy classes for logging (#3575)
* Remove dependency on 'backoff' library (#3679)
* Mon Jan 08 2024 Dirk Müller <dmueller@suse.com>
- Initial Package (1.22.0)
/usr/lib/python3.13/site-packages/opentelemetry /usr/lib/python3.13/site-packages/opentelemetry/exporter /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp/py.typed /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp/version /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp/version/__init__.py /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp/version/__pycache__ /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp/version/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/opentelemetry/exporter/otlp/version/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/INSTALLER /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/METADATA /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/RECORD /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/REQUESTED /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/WHEEL /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/entry_points.txt /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/licenses /usr/lib/python3.13/site-packages/opentelemetry_exporter_otlp-1.43.0.dist-info/licenses/LICENSE /usr/share/doc/packages/python313-opentelemetry-exporter-otlp /usr/share/doc/packages/python313-opentelemetry-exporter-otlp/README.rst /usr/share/licenses/python313-opentelemetry-exporter-otlp /usr/share/licenses/python313-opentelemetry-exporter-otlp/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Aug 2 03:14:27 2026