Pre-release
This release is a pre-release and may not be stable for production use.
This library provides ASGI, WSGI middleware and other HTTP-related functionality that is common to instrumented web frameworks (such as Django, Starlette, FastAPI, etc.) to track requests timing through OpenTelemetry.
Installation
pip install opentelemetry-util-http
Usage (Quart)
from quart import Quart
from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware
app = Quart(__name__)
app.asgi_app = OpenTelemetryMiddleware(app.asgi_app)
@app.route("/")
async def hello():
return "Hello!"
if __name__ == "__main__":
app.run(debug=True)
Usage (Django 3.0)
Modify the application’s asgi.py file as shown below.
import os
from django.core.asgi import get_asgi_application
from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'asgi_example.settings')
application = get_asgi_application()
application = OpenTelemetryMiddleware(application)
Usage (Raw ASGI)
from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware
app = ... # An ASGI application.
app = OpenTelemetryMiddleware(app)
References
Release files for opentelemetry-util-http 0.50b0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| opentelemetry_util_http-0.50b0.tar.gz | 7.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| opentelemetry_util_http-0.50b0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 14.8 kB
Release files / opentelemetry_util_http-0.50b0.tar.gz
| Download URL | opentelemetry_util_http-0.50b0.tar.gz |
|---|---|
| Size | 7.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dc4606027e1bc02aabb9533cc330dd43f874fca492e4175c31d7154f341754af
|
|
BLAKE2b-256 checksum How to use checksums |
6910ce3f0d1157cedbd819194f0b27a6bbb7c19a8bceb3941e4a4775014076cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.8.18
|
Release files / opentelemetry_util_http-0.50b0-py3-none-any.whl
| Download URL | opentelemetry_util_http-0.50b0-py3-none-any.whl |
|---|---|
| Size | 6.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
21f8aedac861ffa3b850f8c0a6c373026189eb8630ac6e14a2bf8c55695cc090
|
|
BLAKE2b-256 checksum How to use checksums |
648a9e1b54f50d1fddebbeac9a9b0632f8db6ece7add904fb593ee2e268ee4de
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.8.18
|