Skip to main content

A lightweight request logger middleware for ASGI applications

Project description

asgi-request-logger

The asgi-request-logger package provides JsonRequestLoggerMiddleware that logs incoming HTTP requests in JSON format. It captures useful metadata such as timestamp, event ID, HTTP method, path, client IP (using configurable header names), user agent, processing time, and error information (if available). This middleware is designed to be integrated into a FastAPI (or any ASGI) application.

Note:
Due to FastAPI/Starlette’s internal exception handling, when a 500 error occurs the error information may not be captured by the logger because the built-in ServerErrorMiddleware intercepts exceptions and raises an Exception. In such cases, it’s recommended to log error details directly within your exception handlers.

Features

  • JSON Logging:
    Logs request details in a structured JSON format.

  • Configurable Options:

    • Event ID: Optionally extract an event ID from a specified header; if absent, a new UUID is generated.
    • Client IP: Extract client IP from headers like X-Forwarded-For or X-Real-IP (configurable).
    • Error Info Mapping:
      Define which keys from the error information (set by your exception handlers) should be logged. For example, mapping the error’s "code" to "error_code".
    • Custom Logger Injection:
      This middleware now requires you to inject your own logger. You must provide a logger that is configured with a QueueHandler (or one of your choosing) to avoid blocking the event loop.
    • Log Info Mapping:
      Use the log_info_mapping parameter to specify which fields from the ASGI scope (or headers) should be included in the log output. By default, it maps:
      • "method""method"
      • "path""path"
      • "client_ip""client_ip"
      • "user_agent""user_agent"

Usage

Basic Integration

Add the middleware to your FastAPI/Starlette app by injecting your logger and (optionally) overriding the default field mappings:

import logging
from fastapi import FastAPI
from asgi_request_logger import JsonRequestLoggerMiddleware

# Configure your logger (ensure it has a QueueHandler for non-blocking logging)
logger = logging.getLogger("my_logger")
logger.setLevel(logging.INFO)
# (Your logger configuration should add a QueueHandler, e.g., via your own setup or using a helper)

app = FastAPI()

app.add_middleware(
    JsonRequestLoggerMiddleware,
    logger=logger,
    event_id_header="X-Event-ID",              # Use this header for event ID; if absent, a new UUID is generated.
    client_ip_headers=["x-forwarded-for", "x-real-ip"],  # List of headers to determine the client IP.
    error_info_name="error_info",              # The key in the scope where error information is stored.
    error_info_mapping={
        "code": "error_code",
        "message": "error_message",
        "stack_trace": "stack_trace"
    },  # Maps error info keys to desired log field names.
    log_info_mapping={
        "method": "method",
        "path": "path",
        "client_ip": "client_ip",
        "user_agent": "user_agent"
    }  # Maps fields from the ASGI scope/headers to log output.
)

Passing Error Information

For detailed error logging, pass error-related info to the scope (typically in your exception handlers). For example, in FastAPI:

from fastapi import Request, Response
import json, traceback

async def http_exception_handler(request: Request, exc: HTTPException):
    my_exception = MyCustomException(http_exception=exc)
    await _pass_error_info(
        request=request,
        my_exception=my_exception,
        stack_trace=traceback.format_exc().splitlines()
    )
    return await _to_response(my_exception=my_exception)

async def _pass_error_info(
    request: Request,
    my_exception: MyCustomException,
    stack_trace: list[str]
):
    request.state.error_info = {
        "code": my_exception.code,
        "message": my_exception.reason,
        "http_status": my_exception.http_status,
        "stack_trace": stack_trace,
    }

async def _to_response(my_exception: MyCustomException):
    return Response(
        status_code=my_exception.http_status,
        content=json.dumps(
            {"code": my_exception.code, "message": my_exception.reason}, ensure_ascii=False
        )
    )

Example JSON Log Output

A typical log entry might look like this:

{
  "timestamp": "2025-03-02T08:17:40.123456Z",
  "event_id": "ab427b0c-629b-4792-891e-bce4c94d1084",
  "method": "GET",
  "path": "/items/3fa85f64-5717-4562-b3fc-2c963f66afa4",
  "client_ip": "203.0.113.195",
  "user_agent": "Mozilla/5.0 (Macintosh; ...)",
  "time_taken_ms": 12,
  "status_code": 200,
  "log_type": "access",
  "level": "INFO"
}

If error information is present (as set by your exception handlers), the log entry will also include keys like "error_code", "error_message", and "stack_trace". Additionally, any fields specified via log_info_mapping will be added from the ASGI scope or headers.

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_logger-0.3.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

asgi_request_logger-0.3.2-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file asgi_request_logger-0.3.2.tar.gz.

File metadata

  • Download URL: asgi_request_logger-0.3.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.12.9 Linux/6.8.0-1021-azure

File hashes

Hashes for asgi_request_logger-0.3.2.tar.gz
Algorithm Hash digest
SHA256 10ae9bd723861f18cc1222394d56b472bb423969521330047c8c5cb71026cd8b
MD5 9fdaf0c31cfd46780584f53b84fba353
BLAKE2b-256 69e39bd7c4f5e8919c49cfe9366a5019a4e0a426431ed18533e66a108a203822

See more details on using hashes here.

File details

Details for the file asgi_request_logger-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: asgi_request_logger-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.12.9 Linux/6.8.0-1021-azure

File hashes

Hashes for asgi_request_logger-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 aee874f7359e2ff057dcbb98c359bf91dbffcd0320f0c5956bb91df7d3f2d77a
MD5 87f3682923c2a2962d97991e97f90669
BLAKE2b-256 b9ddf5917cfed4fe97c0633b2753002c2cee6ee69c05203e6662524c3ca93518

See more details on using hashes here.

Supported by

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