Pre-release
This release is a pre-release and may not be stable for production use.
OpenTelemetry Util HTTP
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.66b0
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.66b0.tar.gz | 11.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| opentelemetry_util_http-0.66b0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 20.0 kB
Release files / opentelemetry_util_http-0.66b0.tar.gz
| Download URL | opentelemetry_util_http-0.66b0.tar.gz |
|---|---|
| Size | 11.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a2d53859630abe8e5abcc4f867c5a809bb95873033573b1a67f6ef43b57a8627
|
|
BLAKE2b-256 checksum How to use checksums |
2283daa57fec7c503b22007eb34becb8435b3bd3a784f1fb2f4b7e94b71cc8c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.10.21
|
Release files / opentelemetry_util_http-0.66b0-py3-none-any.whl
| Download URL | opentelemetry_util_http-0.66b0-py3-none-any.whl |
|---|---|
| Size | 8.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7f5e581e94f023b30995f700e41ce319cec82bd542ff1c1c7c9b56d6b10bb687
|
|
BLAKE2b-256 checksum How to use checksums |
0148d982ebfca471152ec6d454853290d4352392bdcb1593142ec1e1b8cf0b28
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.10.21
|