
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
fastapi-request-observability
Advanced tools
FastAPI middleware for request IDs, trace correlation, and structured access logs
Focused FastAPI middleware for request IDs, W3C trace correlation, contextual JSON logs, and one structured access record per HTTP response.
Managed platforms such as Cloud Run already collect container output.
Applications should only need to write structured JSON to standard output
(stdout); the platform can handle ingestion and delivery.
Compared with sending logs through an in-process cloud logging client, this reduces container CPU, memory, and network use by removing logging API calls, authentication, buffering, batching, and retry work from the application. Under sustained logging load, that reduction can provide a noticeable performance improvement. It also avoids the dependency and maintenance cost of a cloud logging SDK, including its configuration, credentials, and upgrades.
This package turns that simple pipeline into useful production observability. It provides validated request IDs, strict W3C trace correlation, request-scoped fields, and one structured terminal access record. Application and access logs share the same correlation metadata, making all records from a request easier to find, filter, and understand.
Cloud presets map the same logging contract to provider-oriented fields without coupling application code to a cloud logging SDK. The package focuses on structured logging and request correlation: it does not create spans, configure OpenTelemetry, or ship logs to a backend.
JSONFormatter creates one compact, self-contained JSON object per application
or access event. A standard-library logging.StreamHandler follows it with one
LF (\n), producing newline-delimited JSON (NDJSON, also called JSON Lines).
Custom handlers must preserve that one-object-per-line framing by appending
exactly one LF and no non-JSON text. The output is a stream of objects, never a
JSON array.
NDJSON is deliberate for production logging:
head -n 20 app.log | jq -r '.message'.Standard JSON arrays are suited to complete documents; NDJSON retains JSON's structured fields while providing framing designed for continuous log streams.
It uses standard-library logging and pure ASGI middleware, with no exporter or
logging-framework dependency, so applications retain control of recovery,
handlers, and deployment policy.
The PyPI distribution is
fastapi-request-observabilityand the import isfastapi_request_observability. The similarly namedfastapi-observabilitydistribution is an unrelated project.
uv add fastapi-request-observability
Python 3.13 or newer and FastAPI 0.130.0 or newer are supported. The Python compatibility window follows the latest two stable feature releases.
When this documentation shows one configuration, it uses GCP. Complete
runnable GCP, provider-neutral, AWS, and Azure applications are available in
the public examples.
import logging
import sys
from fastapi import FastAPI
from fastapi_request_observability import (
AccessLogConfig,
AccessLogMiddleware,
JSONFormatter,
LoggingPreset,
RequestContextMiddleware,
)
handler = logging.StreamHandler(sys.stdout)
handler.setFormatter(JSONFormatter(LoggingPreset.GCP))
root_logger = logging.getLogger()
root_logger.handlers.clear()
root_logger.addHandler(handler)
root_logger.setLevel(logging.INFO)
app = FastAPI()
# FastAPI applies the last-added middleware first on requests. Add access
# logging first, then request context, so context remains bound during access
# record emission.
app.add_middleware(
AccessLogMiddleware,
config=AccessLogConfig(
logger=logging.getLogger("http.access"),
preset=LoggingPreset.GCP,
),
)
app.add_middleware(RequestContextMiddleware)
@app.get("/items/{item_id}", operation_id="get_item")
async def get_item(item_id: str) -> dict[str, str]:
logging.getLogger(__name__).info("loading item", extra={"item_id": item_id})
return {"item_id": item_id}
Normal application loggers inherit request fields when their handler uses
JSONFormatter. The package does not replace root handlers or configure
Uvicorn. If the structured access record replaces Uvicorn's access line, run
Uvicorn with --no-access-log or explicitly disable the uvicorn.access
logger in the application's logging configuration.
RequestContextMiddleware accepts a single X-Request-ID containing 1–128
ASCII URI-unreserved characters (A-Z, a-z, 0-9, -, ., _, ~). A
missing, duplicate, empty, oversized, or invalid value is replaced with 128
bits of randomness. The selected value is available from:
request_id();correlation_id() and trace_context();current_request_context();request.state.request_id;X-Request-ID header;The response header, input headers, generator, and validator are configurable
with RequestContextConfig. A custom generator is called once. Its result is
validated; an invalid result or exception falls back to the package's safe
format. Without a custom validator, caller IDs use the same URI-unreserved
baseline. A custom validator
may admit broader RFC 9110 field content inside this adapter's ASCII response
boundary, including punctuation, internal space or tab, and values longer than
128 characters. Empty values, edge whitespace, other controls, DEL, and
non-ASCII remain outside this adapter's exact response-header boundary.
Generated and fallback IDs always retain the package baseline.
Accessors return None outside a request; no background-job context is
manufactured.
Invalid or empty configured HTTP header names fail immediately when the config
object is constructed; use inject_response_header=False to disable response
header injection.
traceparent parsing defaults to the pinned W3C Trace Context Level 1
Recommendation. Invalid, duplicate, uppercase, zero-ID, or unsafe native field
values are ignored. Version 00 must be exactly 55 characters; future versions
follow W3C extension framing, treat every dash-delimited suffix as opaque, and
have no package-invented length ceiling.
tracestate field-lines are combined in wire order,
canonicalized by removing HTTP optional whitespace around members, and retained
only when their selected-level key/value grammar, unique-key rule, and
32-member limit are valid. The package can propagate at least 512 characters
and admits valid values beyond that minimum, including the 513-character
boundary. Empty members are valid and count toward the member limit. An invalid
tracestate does not invalidate an otherwise valid traceparent. When the
trace is valid, its trace ID is the correlation ID; otherwise the request ID is.
Level 2 is an explicit opt-in. Configure the same immutable level on both middleware components when both are installed; a mismatch fails the request deterministically instead of silently changing the emitted access fields:
from fastapi_request_observability import (
AccessLogConfig,
RequestContextConfig,
TraceContextLevel,
)
trace_level = TraceContextLevel.LEVEL_2
access_config = AccessLogConfig(trace_context_level=trace_level)
request_context_config = RequestContextConfig(trace_context_level=trace_level)
Values other than 1 or 2 fail configuration immediately. Both levels
preserve trace_flags and derive trace_sampled from bit zero. For version
00, Level 2 also emits trace_id_random from bit one. Level 1 and unknown
higher versions deliberately omit that field.
The incoming parent ID is not a span created by this application. No preset emits it as a current span ID.
Every JSON record contains timestamp, level (severity on GCP), logger,
and message. Set include_source=True to add source file, line, and function.
Exceptions use stacktrace. JSON-serializable extra values stay structured;
unsupported values receive a deterministic type marker instead of breaking
logging. Mapping keys are normalized to JSON strings before encoding; if two
native keys normalize to the same JSON name, the first value is retained so a
record never contains duplicate raw member names.
The formatter enriches records in the thread and context where formatting
occurs. Applications using QueueHandler should format or copy contextual
fields before a record crosses into a listener thread. Access records snapshot
their correlation fields before emission and remain complete when formatted
later.
During a request, records also contain request_id and correlation_id. A
valid W3C context adds trace_id, parent_id, trace_flags, and
trace_sampled; configured Level 2 additionally adds trace_id_random.
The access record message is request completed and includes:
| Field | Meaning |
|---|---|
method | HTTP method |
path | Opt-in escaped wire path, without query string; omitted when ASGI exposes decoded-only path data |
path_template | Matched low-cardinality route template; simple FastAPI placeholders use {name} or {*name}, while richer authoritative native syntax is preserved |
operation_id | Only an explicitly configured APIRoute.operation_id |
status | Status accepted by the downstream ASGI sender, when observed |
duration_ms | Handling and streaming time in milliseconds |
terminal_reason | Standard reason for abnormal completion; absent after normal completion |
peer_ip | Opt-in canonical direct IP from scope["client"][0]; hostnames and zoned values are omitted |
user_agent | Opt-in single RFC 9110 field-content value using the lossless Latin-1 mapping of ASGI header bytes |
error | Opt-in privacy-sensitive exception type and message (capture_error=True) |
The default level is ERROR for abnormal completion or a normal 5xx,
WARNING for a normal 4xx, and INFO otherwise.
Field ownership is contextual and exact. Application extra values cannot
replace envelope, request-context, or fields owned by the active preset, but
may use access-only names, exact aliases owned only by an inactive preset, and
unrelated custom namespaces. Access callbacks
additionally cannot replace the exact fields written by access enrichment.
AccessLogConfig also accepts independent capture_path, capture_peer_ip,
capture_user_agent, and capture_error booleans, all defaulting to False;
a monotonic clock; a status_level(status) callback; and a synchronous
extra_fields(scope) callback. The terminal message is fixed to
request completed and is not configurable. Rich errors can contain secrets
and require an explicit privacy decision. Callback and logging failures use the
default behavior and cannot replace the HTTP response. When installed without
RequestContextMiddleware, access middleware creates default request context
and adds X-Request-ID itself.
path_template is the default aggregation key. Opt-in path is useful for
individual-request diagnostics and has unbounded cardinality. Query strings,
forwarded IPs, bodies, authorization, cookies, and arbitrary headers are never
logged.
FastAPI whole-segment path converters are normalized: ordinary converters such
as {item_id:int} emit {item_id}, while {path:path} emits {*path}.
Richer authoritative matched templates are preserved in native syntax rather
than replaced with request data. Unmatched requests omit route identity.
Pass the same preset to the formatter and access configuration:
from fastapi_request_observability import (
AccessLogConfig,
JSONFormatter,
LoggingPreset,
)
preset = LoggingPreset.GCP # or AWS, AZURE, DEFAULT
handler.setFormatter(JSONFormatter(preset))
access_config = AccessLogConfig(
logger=logging.getLogger("http.access"),
preset=preset,
)
GCP uses severity, logging.googleapis.com/trace,
logging.googleapis.com/trace_sampled, and a structured httpRequest access
field. logging.googleapis.com/trace contains the validated raw W3C trace
ID and requires no project-ID configuration. The preset never emits a fake
logging.googleapis.com/spanId. Its httpRequest.requestUrl is the opt-in,
query-free path only; scheme and authority are never included.AWS adds xray_trace_id in 1-8hex-24hex form. It does not create an X-Ray
segment.AZURE adds operation_Id and operation_ParentId. It does not start or
export Application Insights telemetry.Provider fields correlate logs only. Trace creation and export remain the application's responsibility.
The middleware observes exceptions, emits once, and re-raises the original exception unchanged. It never synthesizes a replacement 500 response.
http.response.start omits status and uses
terminal reason service_error; no synthetic 500 is logged.body_error and level ERROR.OSError raised specifically by the downstream ASGI send boundary uses
client_disconnect and preserves the original exception. An application or
body-generator OSError remains a service or body failure.cancelled. An application that returns
without a complete response uses response_dropped, with status present only
when response start was accepted.stderr and do
not replace the response.With normal app.add_middleware installation, Starlette's outer
ServerErrorMiddleware creates the final unhandled 500 after user middleware
has re-raised. Consequently, the package cannot add X-Request-ID to that final
500 response. The access record still contains the request ID, omits the
unobserved outer status, and reports service_error.
Services that require the header on the final 500 can wrap the completed FastAPI application exported to the ASGI server:
fastapi_app = FastAPI()
fastapi_app.add_middleware(
AccessLogMiddleware,
config=AccessLogConfig(
logger=logging.getLogger("http.access"),
preset=LoggingPreset.GCP,
),
)
# Add routes and other FastAPI middleware to fastapi_app first.
app = RequestContextMiddleware(fastapi_app)
This wrapper is outside FastAPI's recovery middleware and therefore observes
the final 500 response. The trade-off is that the exported app is an ASGI
wrapper rather than the FastAPI object; retain fastapi_app for application
configuration and test setup.
All request state is local to a pure ASGI __call__ and the ContextVar token
is reset in finally. Concurrent and sequential requests cannot share package
context. WebSocket and lifespan scopes pass through unchanged; WebSocket access
logging is outside the package scope.
Opt-in peer_ip comes only from the ASGI scope. The package does not parse
Forwarded or X-Forwarded-For, because trusting those headers without a known
proxy boundary allows spoofing. Configure the ASGI server so scope["client"]
represents the intended direct peer boundary.
Beginning with v1.0.0, exported APIs, configuration defaults, structured log fields, and supported runtime versions are compatibility contracts. Breaking changes require a new major version, explicit changelog coverage, and migration guidance. The package does not configure logging at import time and does not claim ownership of exception responses.
Version 2 configuration and public value objects are keyword-only and expose no v1 argument-order or option compatibility shims. Applications upgrading from 1.x must follow the migration guide.
Repository tests use HTTPX2 directly with its asynchronous ASGI transport.
Deprecated HTTPX and FastAPI/Starlette TestClient are intentionally excluded.
If the package later needs to mock outbound HTTP, use pytest-httpx2 and its
httpx2_mock fixture; do not add pytest-httpx.
See EXAMPLES.md for complete configurations.
Development uses uv and just. On macOS, install the workflow linters:
brew install actionlint zizmor
Then run the repository gates:
just install
just qa
just package-check
just qa runs Ruff, Ty, pytest with branch coverage,
actionlint, and
zizmor. just package-check builds, inspects, and
smoke-tests the wheel and source distribution in isolated environments.
The traceparent parser has a focused mutmut
campaign. It introduces small changes to parse_traceparent and verifies that
the parser tests detect observable behavior changes:
just mutation
This intentionally runs outside just qa. Use uv run mutmut results to
list surviving mutants and uv run mutmut show <mutant> to inspect one. Add a
test when a survivor exposes a contract gap; equivalent transformations do not
need production pragmas or artificial assertions.
Run just e2e-image observability-e2e-local:manual to build a
production-shaped consumer image from the exact checkout. The recipe prefers
Podman and falls back to Docker.
Building the image verifies packaging and integration only. It does not run the image, validate emitted logs, compare implementations, or approve a release. Optional independent tooling may exercise the package's documented public contract. Any audit result is informational and is never a publication requirement.
contextvars
defines task-local context propagation and token-based restoration.traceparent and tracestate contract.severity, message, httpRequest, and special trace fields.1-8hex-24hex form.operation_Id as the root-operation identifier and
operation_ParentId as the immediate-parent identifier.FAQs
FastAPI middleware for request IDs, trace correlation, and structured access logs
The pypi package fastapi-request-observability receives a total of 220 weekly downloads. As such, fastapi-request-observability popularity was classified as not popular.
We found that fastapi-request-observability demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.