Custom Cloud Logging handler for FastAPI (or any Starlette based) applications deployed in Google App Engine. Groups logs coming from the same request lifecycle and propagates the maximum log level throughout the request lifecycle using middleware and context management.
Project description
fastapi-gae-logging
Custom Cloud Logging handler for FastAPI (or any Starlette based) applications deployed in Google App Engine to ease out logs analysis and monitoring through Google Cloud Log Explorer.
What problem does this package solve? Why do we need this?
When deploying FastAPI applications on Google App Engine, I encountered several challenges with logging and observability even when using the official package for this purpose, google-cloud-logging.
-
Scattered Logs: Logs generated during a single request lifecycle were scattered across different log entries, making it difficult to trace the entire flow of a request, especially when troubleshooting issues.
-
Log Severity Mismatch: The severity level of logs was not properly propagated throughout the request lifecycle. This meant that if an error occurred at any point in the request, the earlier logs did not reflect the severity of the final outcome, making it harder to identify problematic requests.
-
Payload Logging Issues: Capturing and logging request payloads was cumbersome, requiring extra logging in the handlers and extra deployments. This led to incomplete logs, making it harder to reproduce issues or analyze request content.
-
Inconsistent Log Structures: The default logging setup lacked a consistent structure, which made it challenging to filter, search, and analyze logs in the Google Cloud Log Explorer.
So what does it do?
The fastapi-gae-logging module addresses these problems by:
-
Grouping Logs by Request: All logs generated during a request's lifecycle are grouped together, allowing for a complete view of the request flow in the Google Cloud Log Explorer. This makes it much easier to trace and troubleshoot issues.
-
Log Level Propagation: The maximum log level observed during a request's lifecycle is propagated, ensuring that logs associated with a failed request reflect the appropriate severity. This improves the accuracy and utility of log searches based on severity.
-
Structured Payload Logging: Request payloads are captured and logged in a structured format, even for non-dictionary JSON payloads. This ensures that all relevant request data is available for analysis, improving the ability to diagnose issues.
Install
pip install fastapi-gae-logging
Features:
- Request Logs Grouping: Groups logs from the same request lifecycle to simplify log analysis using Google Cloud Log Explorer. The logger name for grouping can be customized and defaults to the Google Cloud Project ID with '-request-logger' as a suffix.
- Request Maximum Log Level Propagation: Propagates the maximum log level throughout the request lifecycle, making it easier to search logs based on the severity of an issue.
- Optional incoming request logging: Opt in/out to log headers and payload of incoming requests into the
jsonPayloadfield of the parent log. - Optional request headers logging: Defaults to False. Headers dict lands into field
request_headersin thejsonPayloadof parent log. - Optional request Payload Logging: Defaults to False. Incoming payload parsed lands into field
request_payloadin thejsonPayloadof parent log. Parsing is based on content type with capability to override. Currenty embedded parsers for:application/jsonapplication/x-www-form-urlencodedmultipart/form-datatext/plain
- Optional add-on log filters:
GaeLogSizeLimitFilterfilter to drop log records if they exceed the maximum allowed size by google cloud logging.GaeUrlib3FullPoolFilterfilter to drop noisy 'Connection pool is full' warning logs from Google Cloud and App Engine internal libraries.
API
- Initialization
FastAPIGAELoggingHandler(
app: Starlette,
client: google.cloud.logging.Client,
request_logger_name: Optional[str] = None,
log_payload: bool = False,
log_headers: bool = False,
builtin_payload_parsers: Optional[List[PayloadParser.Defaults]] = None,
custom_payload_parsers: Optional[Dict[str, Callable[[Request], Awaitable[Any]]]] = None,
*args, **kwargs
)
- Parameters
- app (FastAPI | Starlette): The FastAPI or Starlette application instance.
- client (google.cloud.logging.Client): The Google Cloud Logging Client instance. This is required to initialize the handler and retrieve the project ID.
- request_logger_name (Optional[str]): The name of the Cloud Logging logger to use for request logs. Defaults to the Google Cloud Project ID with the suffix '-request-logger'.
- log_payload (bool): Whether to log the request payload. If True, the payload for POST, PUT, PATCH, and DELETE requests will be captured and logged. Defaults to False.
- log_headers (bool): Whether to log the request headers. Defaults to False.
- builtin_payload_parsers (Optional[List[PayloadParser.Defaults]]): A list of built-in parser enums to enable (e.g., [PayloadParser.Defaults.JSON, PayloadParser.Defaults.FORM_URLENCODED]).
- custom_payload_parsers (Optional[Dict[str, Callable[[Request], Awaitable[Any]]]]): A dictionary mapping MIME types (e.g., 'application/custom+xml') to async parser coroutines. These coroutines must accept a Request object and return a serializable result to log. If provided, these will override default parsers for the specified content types.
- *args: Additional arguments to pass to the superclass constructor. Any argument you would pass to CloudLoggingHandler.
- **kwargs: Additional keyword arguments to pass to the superclass constructor. Any keyword argument you would pass to CloudLoggingHandler.
Example of usage
import logging
import os
from fastapi import FastAPI, File, Form, Request, UploadFile
from fastapi.exceptions import HTTPException
from fastapi.responses import JSONResponse
app = FastAPI()
async def custom_payload_parser_plain_text(request: Request):
# Custom parser for text/plain to demonstrate GAE handler extensibility.
# Needs to return a serializable value to be logged
body_bytes = await request.body()
incoming_payload = body_bytes.decode('utf-8')
return f"Parsed Plain Text: {incoming_payload}"
# Initialize GAE Logging
if os.getenv('GAE_ENV', '').startswith('standard'):
import google.cloud.logging
from google.cloud.logging_v2.handlers import setup_logging
from fastapi_gae_logging import (
FastAPIGAELoggingHandler,
GaeLogSizeLimitFilter,
GaeUrlib3FullPoolFilter,
PayloadParser,
)
client = google.cloud.logging.Client()
gae_log_handler = FastAPIGAELoggingHandler(
app=app,
client=client,
# Optional - opt in for logging payload and logs; defaults are False
log_headers=True,
log_payload=True,
# Optional - opt in for all built in payload parsers; applicable only if log_payload is set True
builtin_payload_parsers=[content_type for content_type in PayloadParser.Defaults],
# Optional - override built in payload parsers or provide more; applicable only if log_payload is set True
custom_payload_parsers={
"text/plain": custom_payload_parser_plain_text
}
)
setup_logging(handler=gae_log_handler)
# Optional - add extra filters for the logger
gae_log_handler.addFilter(GaeLogSizeLimitFilter())
gae_log_handler.addFilter(GaeUrlib3FullPoolFilter())
logging.getLogger().setLevel(logging.DEBUG)
@app.get("/info")
def info():
logging.debug("Step 1: Debugging diagnostic")
logging.info("Step 2: General information log")
return JSONResponse(
content={
"message": "info"
}
)
@app.get("/warning")
async def warning():
logging.debug("Step 1: Check system state")
logging.info("Step 2: State is normal")
logging.warning("Step 3: Resource usage approaching threshold")
return JSONResponse(
content={
"message": "warning"
}
)
@app.get("/error")
def error():
logging.debug("Step 1: Internal check")
logging.info("Step 2: Transaction started")
logging.warning("Step 3: Retry attempted")
logging.error("Step 4: Transaction failed after retries")
return JSONResponse(
content={
"message": "error"
}
)
@app.get("/exception")
def exception():
logging.debug("Step 1: Preparing logic")
logging.info("Step 2: Executing risky operation")
logging.error("Step 3: Critical failure detected")
raise ValueError("Simulated ValueError for GAE grouping demonstration")
@app.get("/http_exception")
def http_exception():
logging.debug("Step 1: Looking up resource")
logging.info("Step 2: Resource ID not found in database")
raise HTTPException(
status_code=404,
detail={
"error": "Resource not found"
}
)
@app.post("/post_payload")
async def post_payload(request: Request):
content_type = request.headers.get("content-type", "")
logging.debug(f"Handling POST request with Content-Type: {content_type}")
payload = None
# 1. Handle JSON
if "application/json" in content_type:
try:
payload = await request.json()
logging.info(f"Parsed as JSON: {payload}")
except Exception:
logging.warning("Failed to parse body as JSON")
payload = None
# 2. Handle Form URL-Encoded
elif "application/x-www-form-urlencoded" in content_type:
form_data = await request.form()
payload = dict(form_data)
logging.info(f"Parsed as Form URL-Encoded: {payload}")
# 3. Fallback for Plain Text or others
else:
body_bytes = await request.body()
payload = body_bytes.decode("utf-8", errors="replace")
logging.info(f"Parsed as Raw/Text: {payload}")
return JSONResponse(
content={
"mirror_response": payload,
"detected_type": str(type(payload)),
"content_type_received": content_type
},
status_code=200
)
@app.post("/post_form")
async def post_form(description: str = Form(...), file: UploadFile = File(...)): # noqa: B008
file_content = await file.read()
payload = {
"description": description,
"file_name": file.filename,
"content_type": file.content_type,
"file_size": len(file_content),
}
logging.info(f"Form submission processed: {payload}")
return JSONResponse(content={"mirror_response": payload}, status_code=200)
How it looks in Google Cloud Log Explorer
Logger selection
Groupped logs with propagated log severity to the parent log
Grouped logs in request with payload
Dependencies
This tool is built upon the following packages:
starlette: Starlette is a lightweight ASGI framework/toolkit, which is ideal for building async web services in Python. FastAPI is built on top of Starlette.google-cloud-logging: Google Cloud Logging API client library for logging and managing logs in Google Cloud Platform.
Implementation Concept
- Middleware Integration: A custom middleware integrates into FastAPI to intercept requests and log data after processing.The custom middleware is added to the FastAPI application during the initialization of the FastAPIGAELoggingHandler.
- Context Management: Uses context variables to manage request-specific data and metadata such as request payload, Google Cloud trace ID, start time of the incoming request and the maximum log level observed during the request lifecycle.
- Log Interception: A logging filter intercepts log records, injecting trace information and adjusting the maximum log level based on observed log severity.
- Cloud Logging: Utilizes Google Cloud Logging to group logs by request and propagate the maximum log level, enhancing observability and troubleshooting.
- Structured Logging: Parent log of the request-response lifecycle is structured and sent to Google Cloud Logging with additional context, such as the request method, URL, and user agent after the request has been processed and served.
Dev
uv sync --all-packages- Use
sample_appfolder for minimal Appengine app deployment of fastapi app that uses the local library src code via symlink.- If symlink is broken for any reason, create it again from inside the
devfolder:ln -s ../src/fastapi_gae_logging/ . - Deploy the app:
gcloud app deploy --version=v1 default.yaml --project=<PROJECT_ID> --account <ACCOUNT_EMAIL> - Ping the sample app to generate logs for various cases in log explorer:
python3.12 ping_endpoints.py --project <PROJECT_ID>
- If symlink is broken for any reason, create it again from inside the
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_gae_logging-0.1.0.tar.gz.
File metadata
- Download URL: fastapi_gae_logging-0.1.0.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f6bbc2b6fefa3a49a6481362bc6152ae076a01ad942cb47b3d8f07e9ac52992
|
|
| MD5 |
77163816ce7e3d71b54e3835cac577b2
|
|
| BLAKE2b-256 |
68c885164c240d34de0940770ca8a60d098db5e0b68ea0f796f5bbd75156e84f
|
Provenance
The following attestation bundles were made for fastapi_gae_logging-0.1.0.tar.gz:
Publisher:
python-package.yml on chrisK824/fastapi-gae-logging
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapi_gae_logging-0.1.0.tar.gz -
Subject digest:
5f6bbc2b6fefa3a49a6481362bc6152ae076a01ad942cb47b3d8f07e9ac52992 - Sigstore transparency entry: 809233801
- Sigstore integration time:
-
Permalink:
chrisK824/fastapi-gae-logging@d5713964c7ff28f1f6cdb04923aa7f8906de814d -
Branch / Tag:
refs/tags/0.1.0 - Owner: https://github.com/chrisK824
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-package.yml@d5713964c7ff28f1f6cdb04923aa7f8906de814d -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapi_gae_logging-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fastapi_gae_logging-0.1.0-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3e2076b4250effa0d107ca1a8be2c95db759fd169a0b7fca1852fc72d4690e8
|
|
| MD5 |
871226f8aee9f27ffe44a217718a0227
|
|
| BLAKE2b-256 |
1103779fb6d7fdbd463b20608d82ab0040aa6af04ce8a10cb69e367e6ae44f8c
|
Provenance
The following attestation bundles were made for fastapi_gae_logging-0.1.0-py3-none-any.whl:
Publisher:
python-package.yml on chrisK824/fastapi-gae-logging
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapi_gae_logging-0.1.0-py3-none-any.whl -
Subject digest:
a3e2076b4250effa0d107ca1a8be2c95db759fd169a0b7fca1852fc72d4690e8 - Sigstore transparency entry: 809233805
- Sigstore integration time:
-
Permalink:
chrisK824/fastapi-gae-logging@d5713964c7ff28f1f6cdb04923aa7f8906de814d -
Branch / Tag:
refs/tags/0.1.0 - Owner: https://github.com/chrisK824
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-package.yml@d5713964c7ff28f1f6cdb04923aa7f8906de814d -
Trigger Event:
release
-
Statement type: