Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python313-opentelemetry-instrumentation-asgi-0.64b0-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python313-opentelemetry-instrumentation-asgi Distribution: openSUSE Tumbleweed
Version: 0.64b0 Vendor: openSUSE
Release: 1.1 Build date: Tue Jul 7 21:02:48 2026
Group: Unspecified Build host: reproducible
Size: 107993 Source RPM: python-opentelemetry-instrumentation-asgi-0.64b0-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-asgi
Summary: ASGI instrumentation for OpenTelemetry
This library provides a ASGI middleware that can be used on any ASGI framework
(such as Django, Starlette, FastAPI or Quart) to track requests timing through
OpenTelemetry.

Provides

Requires

License

Apache-2.0

Changelog

* Tue Jul 07 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.64b0:
    * ### Added
    * `opentelemetry-instrumentation-exceptions`: add
      instrumentation to emit OpenTelemetry logs for uncaught
      process, thread, and asyncio exceptions.
    * `opentelemetry-instrumentation-botocore`: loosen aiobotocore
      version constraints to allow for 3.x
    * `opentelemetry-instrumentation-logging`: add optional
      `inject_trace_context` argument for injecting trace context
      attributes
    * `opentelemetry-instrumentation-redis`: gracefully handle hook
      exceptions
    * ### Changed
    * opentelemetry-instrumentation-requests: remove multiple calls
      to sanitize_method
    * ### Fixed
    * `opentelemetry-instrumentation-django`: Remove duplicate
      query logging in SQLCommenter middleware that broke Django's
      `assertNumQueries`
    * `opentelemetry-instrumentation-flask`: wrap wsgi_app call in
      try/except to prevent active_requests gauge leak
    * `opentelemetry-instrumentation-asyncpg`: instrument prepared
      statements
    * `opentelemetry-instrumentation-aiokafka`, `opentelemetry-
      instrumentation-confluent-kafka`, `opentelemetry-
      instrumentation-kafka-python`: fix malformed RST formatting
      in module docstrings
    * `opentelemetry-instrumentation-dbapi`: Fix pyodbc DB-API
      instrumentation examples to wrap `connect`.
    * `opentelemetry-instrumentation-tornado`: reduce cardinality
      of `http.target` metrics attribute with old semantic
      conventions
    * `opentelemetry-instrumentation-dbapi`: implement proper
      handling of t-string queries
    * `opentelemetry-instrumentation-fastapi`: fix `AttributeError`
      when resolving routes added via `include_router` on FastAPI
      0.137+
    * `opentelemetry-instrumentation-tornado`: sanitize the request
      http method in server and client spans and metrics
* Sat Jun 20 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.63b1:
    * This is a patch release on the previous 1.42.0/0.63b0
      release, fixing the issue(s) below.
  - update to 0.63b0:
    * ### Added
    * `opentelemetry-exporter-richconsole`: Add support for
      suppressing resource information
    * `opentelemetry-instrumentation`: Add experimental metrics
      attributes Labeler utility
    * `opentelemetry-instrumentation-logging`: Add
      `OTEL_PYTHON_LOG_HANDLER_LEVEL` and `OTEL_PYTHON_LOG_FORMAT`
      environment variables to configure the log level and
      formatter of the auto-instrumented `LoggingHandler`.
    * `opentelemetry-instrumentation-sqlite3`: Add uninstrument,
      error status, suppress, and no-op tests
    * Add `BaggageLogProcessor` to `opentelemetry-processor-
      baggage`
    * `opentelemetry-instrumentation-system-metrics`: Add support
      for `process.disk.io` metric in system-metrics
      instrumentation
    * `opentelemetry-instrumentation`: Register
      `OTEL_SEMCONV_STABILITY_OPT_IN` in `environment_variables.py`
      so `opentelemetry-instrument` exposes a
      `--semconv_stability_opt_in` CLI argument
    * Expand `AGENTS.md` with instrumentation/GenAI guidance and
      add PR review instructions.
    * `opentelemetry-instrumentation`: update auto-instrumentation
      to re-inject instrumentation path after init
    * `opentelemetry-instrumentation-dbapi`: Add Database client
      operation duration and returned rows metrics
    * ### Changed
    * Remove redundant `pylint: disable=attribute-defined-outside-
      init` comments and add rule to global `.pylintrc` disable
      list
    * Bump `pylint` to `4.0.5`
    * `opentelemetry-instrumentation-logging`: Use
      `LogRecord.getMessage()` to format and extract each log
      record's body text to more closely match the expected usage
      of the logging system. As a result, all OTel log record
      bodies are now always strings. Previously, if `LogRecord.msg`
      (which contains the format string) was set to a non-string
      object (e.g. `logger.warning(some_dict)`), the object was
      exported as-is to the OTLP body field. Now,
      `LogRecord.getMessage()` will convert it to to a string. If
      you are passing in non-strings as the format string argument
      and your backend is expecting them as-is, you will need to
      update accordingly.
    * Switch to SPDX license headers and add CI enforcement
    * `opentelemetry-instrumentation-{urllib,urllib3,requests}`:
      switch http mock library from abandoned httpretty to mocket
    * ### Removed
    * Drop Python 3.9 support
    * ### Fixed
    * `opentelemetry-instrumentation-aiohttp-server`: Use
      `canonical` attribute of the `Resource` as a span name
    * Refactor unit tests to allow for population of the random
      trace id flag in the `traceparent` header
    * `opentelemetry-instrumentation-aws-lambda`: fix improper
      handling of header casing
    * `opentelemetry-instrumentation-flask`: Clean up environ keys
      in `_teardown_request` to prevent duplicate execution
    * `opentelemetry-instrumentation-celery`: Coerce non-string
      values to strings in `CeleryGetter.get()` to prevent
      `TypeError` in `TraceState.from_header()` when Celery request
      attributes contain ints
    * `opentelemetry-instrumentation-celery`: Coerce timelimit
      values to strings in `set_attributes_from_context()` to
      prevent mixed-type span attribute warning
    * `opentelemetry-instrumentation-fastapi`: Fix `FastAPI`
      instrumentation to correctly trace `BackgroundTasks` by
      wrapping their execution in a dedicated span, ensuring proper
      parent-child relationships and accurate trace timing
    * `opentelemetry-instrumentation-flask`: Stop reading the
      deprecated (from 3.1) `flask.__version__` attribute; resolve
      the Flask version via `importlib.metadata`
    * `opentelemetry-instrumentation-confluent-kafka`: Populate
      `server.address` and `server.port` span attributes from the
      producer/consumer `bootstrap.servers` config; previously
      `KafkaPropertiesExtractor.extract_bootstrap_servers` was
      defined but never called
    * `opentelemetry-instrumentation-dbapi` Use `ObjectProxy`
      instead of `BaseObjectProxy` for `TracedCursorProxy` to
      restore iterability with wrapt 2.x
    * `opentelemetry-instrumentation-pyramid`: add missing
      `http.response.status_code` in duration metrics for stable
      http semantic conventions
    * `opentelemetry-instrumentation-pika` Use `ObjectProxy`
      instead of `BaseObjectProxy` for `ReadyMessagesDequeProxy` to
      restore iterability with wrapt 2.x
    * `docker-tests`: Don't require sudo, debian based distro and
      MS SQL ODBC driver to run locally. Instead require docker and
      unixodbc
    * `opentelemetry-instrumentation-celery`: clear completed task
      ids from `task_id_to_start_time`
    * `opentelemetry-instrumentation-celery`: add null guards and
      type-safe helper handling around Celery context propagation
      internals
    * `opentelemetry-instrumentation-wsgi`: use `PATH_INFO` and
      `QUERY_STRING` for URL attributes instead of parsing
      `RAW_URI` or `REQUEST_URI`
    * `opentelemetry-instrumentation-mysqlclient`: Update unit
      tests to properly validate trace context trace flag values.
    * `opentelemetry-instrumentation-pika`: pass destination to
      `_enrich_span` instead of `task_name`
    * `opentelemetry-instrumentation-tornado`: reduce cardinality
      of span names and metrics attributes. This introduces a
      breaking change in the metrics attributes for the stable
      semantic convention by dropping the out of spec `url.query`
      and `url.path` attributes in favor of in-spec `http.route`.
    * `opentelemetry-instrumentation-confluent-kafka`: Declare
      `opentelemetry-semantic-conventions` as a direct dependency
    * `opentelemetry-instrumentation-pymssql`: Fix semconv
      stability migration for connection attributes (host, port,
      user) set in `wrapped_connection()` to respect
      `OTEL_SEMCONV_STABILITY_OPT_IN`. Note: `net.peer.port` is now
      emitted as `int` instead of `string` in default mode,
      aligning with other DB instrumentations.
    * Declare `opentelemetry-semantic-conventions` as a direct
      dependency for the aio-pika, logging, pika and system-metrics
      instrumentations, since each imports `opentelemetry.semconv`
      directly.
  - update to opentelemetry-instrumentation-google-genai==0.7b1:
    * This is a patch release on the previous 0.7b0 release, fixing
      the issue(s) below.
  - update to opentelemetry-util-genai==0.4b0:
    * Add `AgentInvocation` type with `invoke_agent` span lifecycle
    * Add metrics support for EmbeddingInvocation
    * Add support for workflow in genAI utils handler.
    * Enrich ToolCall type, breaking change: usage of ToolCall
      class renamed to ToolCallRequest
    * Add EmbeddingInvocation span lifecycle support
    * Populate schema_url on metrics
    * Add workflow invocation type to genAI utils
    * Check if upload works at startup in initializer of the
      `UploadCompletionHook`, instead of repeatedly failing on
      every upload (#4390).
    * Refactor public API: add factory methods (`start_inference`,
      `start_embedding`, `start_tool`, `start_workflow`) and
      invocation-owned lifecycle (`invocation.stop()` /
      `invocation.fail(exc)`); rename `LLMInvocation` →
      `InferenceInvocation` and `ToolCall` → `ToolInvocation`.
      Existing usages remain fully functional via deprecated
      aliases.
    * `TelemetryHandler` now accepts a `completion_hook` parameter
      and calls it after each LLM invocation, passing inputs,
      outputs, the active span, and the log record. Content capture
      is enabled automatically when a real hook is configured.
    * Add metrics to ToolInvocations
    * Wrap completion hooks loaded via `load_completion_hook` so
      exceptions raised by `on_completion` are logged and swallowed
      instead of propagating to instrumentation call sites.
  - update to opentelemetry-instrumentation-openai-v2==2.4b0:
    * Migrate experimental path from deprecated `LLMInvocation` to
      `InferenceInvocation`, using `handler.start_inference()` and
      `invocation.stop()`/`invocation.fail()` directly
    * Use `create_duration_histogram` and `create_token_histogram`
      from `opentelemetry-util-genai` instead of defining bucket
      boundaries locally
    * Import `OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT`
      from `opentelemetry.util.genai.environment_variables` instead
      of re-defining it locally, making `opentelemetry-util-genai`
      the single source of truth for this constant.
    * Fix compatibility with wrapt 2.x by using positional
      arguments in `wrap_function_wrapper()` calls
    * Fix `ChoiceBuffer` crash on streaming tool-call deltas with
      `arguments=None`
    * Fix `StreamWrapper` missing `.headers` and other attributes
      when using `with_raw_response` streaming
    * Add opt-in support for latest experimental semantic
      conventions (v1.37.0). Set `OTEL_SEMCONV_STABILITY_OPT_IN` to
      `gen_ai_latest_experimental` to enable. Add dependency on
      `opentelemetry-util-genai` pypi package.
    * Add wrappers for OpenAI Responses API streams and response
      stream managers
    * Add async wrappers for OpenAI Responses API streams and
      response stream managers
    * Add strongly typed Responses API extractors with validation
      and content extraction improvements
    * Add completion hook support.
    * Fix `response_format` handling: map
      `json_object`/`json_schema` to `json` output type.
    * Skip attribute values with `openai.Omit` value.
    * Default empty string for `gen_ai.request.model` attribute on
      missing model.
* Sat Apr 25 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.62b1:
    * 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 0.62b0:
    * added tests
* Mon Mar 23 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.61b0:
    * Add Python 3.14 support
* Sun Dec 28 2025 Dirk Müller <dmueller@suse.com>
  - update to 0.60b0:
    * Silence events API warnings for internal users
    * `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
* Thu Nov 20 2025 Nico Krapp <nico.krapp@suse.com>
  - Update to 0.59b0
    * opentelemetry-instrumentation-flask: Do not record http.server.duration
      metrics for excluded URLs.
    * opentelemetry-instrumentation-botocore: migrate off the deprecated events
      API to use the logs API
    * opentelemetry-instrumentation-dbapi: fix crash retrieving libpq version
      when enabling commenter with psycopg
    * opentelemetry-instrumentation-fastapi: Fix handling of APIRoute subclasses
    * opentelemetry-instrumentation-botocore: Add support for AWS Secrets Manager
      semantic convention attribute
    * opentelemetry-instrumentation-dbapi: Add support for commenter_options in
      trace_integration function to control SQLCommenter behavior
    * Add rstcheck to pre-commit to stop introducing invalid RST
    * opentelemetry-exporter-credential-provider-gcp: create this package which
      provides support for supplying your machine's Application Default Credentials
      (https://cloud.google.com/docs/authentication/application-default-credentials)
      to the OTLP Exporters created automatically by OpenTelemetry Python's auto
      instrumentation. These credentials authorize OTLP traces to be sent to
      telemetry.googleapis.com.
    * opentelemetry-instrumentation-psycopg: Add missing parameter
      capture_parameters to instrumentor.
    * opentelemetry-instrumentation-dbapi: Adds sqlcommenter to documentation.
* Sun Sep 21 2025 Dirk Müller <dmueller@suse.com>
  - update to 0.58b0:
    * `opentelemetry-instrumentation-fastapi`: Fix middleware
      ordering to cover all exception handling use cases.
    * `opentelemetry-instrumentation-asgi`: Make all user hooks
      failsafe and record exceptions in hooks.
    * `opentelemetry-instrumentation-fastapi`: Fix memory leak in
      `uninstrument_app()` by properly removing apps from the
      tracking set
    * `opentelemetry-instrumentation-tornado` Fix server (request)
      duration metric calculation
    * `opentelemetry-instrumentation-tornado`: Fix to properly skip
      all server telemetry when URL excluded.
    * `opentelemetry-instrumentation`: Avoid calls to
      `context.detach` with `None` token.
    * `opentelemetry-instrumentation-starlette`/`opentelemetry-
      instrumentation-fastapi`: Fixes a crash when host-based
      routing is used
    * Fix documentation order of sections and headers for Django,
      Flask, MySQL, mysqlclient, psycopg, psycopg2, pymysql,
      sqlalchemy instrumentations.
    * `opentelemetry-instrumentation-asgi` Fixed an issue where
      FastAPI reports IP instead of URL.
    * `opentelemetry-instrumentation-httpx`: fix missing metric
      response attributes when tracing is disabled
    * `opentelemetry-instrumentation-fastapi`:  Don't pass bounded
      server_request_hook when using
      `FastAPIInstrumentor.instrument()`
    * `opentelemetry-util-genai` Add a utility to parse the
      `OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT`
      environment variable. Add `gen_ai_latest_experimental` as a
      new value to the Sem Conv stability flag (#3716).
    * `opentelemetry-instrumentation-confluent-kafka` Add support
      for confluent-kafka <=2.11.0
    * `opentelemetry-instrumentation-system-metrics`: Add
      `cpython.gc.collected_objects` and
      `cpython.gc.uncollectable_objects` metrics
    * `opentelemetry-sdk-extension-aws` Add AWS X-Ray Remote
      Sampler with initial Rules Poller implementation
    * `opentelemetry-instrumentation`: add support for
      `OTEL_PYTHON_AUTO_INSTRUMENTATION_EXPERIMENTAL_GEVENT_PATCH`
      to inform opentelemetry-instrument about gevent
      monkeypatching
    * `opentelemetry-instrumentation`: botocore: Add support for
      AWS Step Functions semantic convention attributes
    * `opentelemetry-instrumentation-botocore`: Add support for SNS
      semantic convention attribute aws.sns.topic.arn
    * `opentelemetry-instrumentation`: botocore: upgrade moto
      package from 5.0.9 to 5.1.11
  - update to 0.57b0:
    * `opentelemetry-instrumentation`: Fix dependency conflict
      detection when instrumented packages are not installed by
      moving check back to before instrumentors are loaded. Add
      "instruments-any" feature for instrumentations that target
      multiple packages.
    * infra(ci): Fix git pull failures in core contrib test
  - update to 0.56b0:
    * `opentelemetry-instrumentation-pika` Added instrumentation
      for All `SelectConnection` adapters
    * `opentelemetry-instrumentation-tornado` Add support for
      `WebSocketHandler` instrumentation
    * `opentelemetry-util-http` Added support for redacting
      specific url query string values and url credentials in
      instrumentations
    * `opentelemetry-instrumentation-pymongo` `aggregate` and
      `getMore` capture statements support
* Mon Jun 02 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.54b1:
    * Bump for opentelemetry 1.33.1 release.
  - Remove unneeded BuildRequires on setuptools and wheel.
* Tue Feb 25 2025 Dirk Müller <dmueller@suse.com>
  - update to 0.51b0:
    * bump for opentelemetry 1.30.0 release
* Wed Jan 08 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to version 0.50b0
    * `opentelemetry-instrumentation-starlette` Add type hints to the instrumentation
    * `opentelemetry-distro` default to OTLP log exporter.
    * `opentelemetry-instrumentation-sqlalchemy` Update unit tests to run with SQLALchemy 2
    * Add `opentelemetry-instrumentation-openai-v2` to `opentelemetry-bootstrap`
    * `opentelemetry-instrumentation-sqlalchemy` Add sqlcomment to `db.statement` attribute
    * `opentelemetry-instrumentation-dbapi` Add sqlcomment to `db.statement` attribute
    * `opentelemetry-instrumentation-dbapi` instrument_connection accepts optional connect_module
    * `opentelemetry-instrumentation-mysqlclient` Add sqlcommenter support
    * `opentelemetry-instrumentation-pymysql` Add sqlcommenter support
    * `opentelemetry-instrumentation-click`: new instrumentation to trace click commands
    * `opentelemetry-instrumentation-starlette`: Retrieve `meter_provider` key instead of
      `_meter_provider` on `_instrument`
    * `opentelemetry-instrumentation-httpx`: instrument_client is a static method again
    * `opentelemetry-instrumentation-system_metrics`: fix callbacks reading wrong config
    * `opentelemetry-instrumentation-httpx`: Check if mount transport is none before wrap it
    * Replace all instrumentor unit test `assertEqualSpanInstrumentationInfo` calls with
      `assertEqualSpanInstrumentationScope` calls
    * `opentelemetry-instrumentation-sqlalchemy` Fixes engines from `sqlalchemy.engine_from_config`
      not being fully instrumented
    * `opentelemetry-instrumentation-sqlalchemy`: Fix a remaining memory leak in EngineTracer
    * `opentelemetry-instrumentation-sqlite3`: Update documentation on explicit cursor support of tracing
    * `opentelemetry-instrumentation-sqlalchemy` teach instruments version
    * Drop `opentelemetry-instrumentation-test` package from default instrumentation list
    * `opentelemetry-instrumentation-httpx`: remove private unused `_InstrumentedClient`
      and `_InstrumentedAsyncClient` classes
  - from version 0.49b0
    * `opentelemetry-instrumentation-openai-v2` Instrumentation for OpenAI >= 0.27.0
    * `opentelemetry-instrumentation-fastapi` Add autoinstrumentation mechanism tests.
    * `opentelemetry-instrumentation-aiokafka` Add instrumentor and auto instrumentation
      support for aiokafka
    * `opentelemetry-instrumentation-redis` Add additional attributes for methods create_index
      and search, rename those spans
    * `opentelemetry-instrumentation` Add support for string based dotted module paths in unwrap
    * `opentelemetry-instrumentation-aiokafka` Wrap `AIOKafkaConsumer.getone()` instead of `AIOKafkaConsumer.__anext__`
    * `opentelemetry-instrumentation-confluent-kafka` Fix to allow `topic` to be extracted from `kwargs` in `produce()`
    * `opentelemetry-instrumentation-system-metrics` Update metric units to conform to UCUM conventions.
    * `opentelemetry-instrumentation-celery` Don't detach context without a None token
    * `opentelemetry-exporter-prometheus-remote-write`: sort labels before exporting
    * `opentelemetry-instrumentation-dbapi` sqlcommenter key values created from PostgreSQL, MySQL systems
    * `opentelemetry-instrumentation-system-metrics`: don't report open file descriptors on Windows
    * Deprecation of pkg_resource in favor of importlib.metadata
    * `opentelemetry-instrumentation` Don't fail distro loading if instrumentor raises ImportError, instead skip them
    * `opentelemetry-instrumentation-httpx` Rewrote instrumentation to use wrapt instead of subclassing
  - Use %{version} in BuildRequires and Requires for dependencies
* Wed Sep 04 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Initial build
    * Version 0.48b0

Files

/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__init__.py
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/package.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/package.cpython-313.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/types.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/types.cpython-313.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/version.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/__pycache__/version.cpython-313.pyc
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/package.py
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/types.py
/usr/lib/python3.13/site-packages/opentelemetry/instrumentation/asgi/version.py
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/METADATA
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/RECORD
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/WHEEL
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/licenses
/usr/lib/python3.13/site-packages/opentelemetry_instrumentation_asgi-0.64b0.dist-info/licenses/LICENSE
/usr/share/doc/packages/python313-opentelemetry-instrumentation-asgi
/usr/share/doc/packages/python313-opentelemetry-instrumentation-asgi/README.rst
/usr/share/licenses/python313-opentelemetry-instrumentation-asgi
/usr/share/licenses/python313-opentelemetry-instrumentation-asgi/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 2 03:14:27 2026