Skip to main content

ASGI request id middleware

Project description

asgi-request-id

This was developed at GRID for use with our python backend services and intended to make it easier to log/generate request IDs.

installation

pip install asgi-request-id

usage

import logging
import uvicorn

from starlette.applications import Starlette
from starlette.responses import PlainTextResponse

from asgi_request_id import RequestIDMiddleware, get_request_id

logger = logging.getLogger(__name__)
app = Starlette()


@app.route("/")
def homepage(request):
    logger.info(f"Request ID: {get_request_id()}")
    return PlainTextResponse("hello world")


app.add_middleware(
    RequestIDMiddleware,
    incoming_request_id_header="x-amzn-trace-id",
    prefix="myapp-",
)

if __name__ == "__main__":
    uvicorn.run(app)

The package will do the following:

Search for an incoming request identifier and use it as the request id if found. If it is not found, an unique request id with an optional prefix is generated.

The request id is stored in a context variable and made available via get_request_id

Finally, it is set as the request_id response header.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asgi-request-id-0.1.0.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

asgi_request_id-0.1.0-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page