Plugin for django to support Google Structured Logger
Project description
Django Google Structured Logger
Django Google Structured Logger is a Django middleware designed to capture and log details from incoming requests and outgoing responses. It offers features to mask sensitive data, set default fields for Google Cloud Logging, and structure logs in a detailed and organized manner.
Contents
Features:
- Detailed Logging: Logs both requests and responses with meticulous details.
- Sensitive Data Masking: Masks sensitive information using customizable regex patterns.
- Google Cloud Logging Support: Formats logs to match Google Cloud Logging standards.
- Configurable Settings: Customize log behavior through Django settings.
Usage:
- Add
GoogleFormatter
to your Django'sLOGGING
setting. Example:LOGGING = { "version": 1, "disable_existing_loggers": False, "formatters": { "json": { "()": "django_google_structured_logger.formatter.GoogleFormatter", }, }, "handlers": { "google-json-handler": { "class": "logging.StreamHandler", "formatter": "json", }, }, "root": { "handlers": ["google-json-handler"], "level": logging.INFO, } }
- Add
SetRequestToLoggerMiddleware
to your Django'sMIDDLEWARE
setting. Example:MIDDLEWARE = [ ... "django_google_structured_logger.middleware.SetRequestToLoggerMiddleware", ]
- Ensure your Django project has the necessary configurations in the
settings.py
.
Key Components:
1. middleware.py
- SetRequestToLoggerMiddleware: This class contains methods to process incoming requests and outgoing responses and then log them. It supports features like abridging lengthy data and masking sensitive information.
2. formatter.py
- GoogleFormatter: Extends
jsonlogger.JsonFormatter
to format logs specifically for Google Cloud Logging. It sets default fields such as severity, labels, operation, and source location based on Google's logging standards.
3. settings.py
- Provides a list of default sensitive keys for data masking.
- Allows customization of logging behavior with options to specify maximum string length, excluded endpoints, sensitive keys, and more.
Settings:
These are the settings that can be customized for the middleware:
- LOG_MAX_STR_LEN: Maximum string length before data is abridged. Default is 200.
- LOG_MAX_LIST_LEN: Maximum list length before data is abridged. Default is 10.
- LOG_EXCLUDED_ENDPOINTS: List of endpoints to exclude from logging. Default is an empty list.
- LOG_SENSITIVE_KEYS: Regex patterns for keys which contain sensitive data. Defaults provided.
- LOG_MASK_STYLE: Style for masking sensitive data. Default is "partially".
- LOG_MASK_CUSTOM_STYLE: Custom style for masking if
LOG_MASK_STYLE
is set to "custom". Default is just the data itself. - LOG_MIDDLEWARE_ENABLED: Enable or disable the logging middleware. Default is True.
- LOG_EXCLUDED_HEADERS: List of request headers to exclude from logging. Default is ["Authorization"].
- LOG_USER_ID_FIELD: Field name for user ID. Default is "id".
- LOG_USER_EMAIL_FIELD: Field name for user email. Default is "email".
Conclusion:
SetRequestToLoggerMiddleware is a comprehensive solution for those seeking enhanced logging capabilities in their Django projects, with particular attention to sensitive data protection and compatibility with Google Cloud Logging.
To get started, integrate the provided middleware, formatter, and settings into your Django project, customize as needed, and enjoy advanced logging capabilities!
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
Hashes for django-google-structured-logger-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cb9255fda4ef198b137dfc4f466b84b374544283884a6a507f6af8e28726ad0 |
|
MD5 | b19020807a7a4930239df6699c2838db |
|
BLAKE2b-256 | 7e30ef6a4b7e2d9783f1c3b557705208b0c1b2ac72e5dee2bb84fbc280ee2290 |
Hashes for django_google_structured_logger-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9be8d216c821849d53f206b9e0002451a87f035d3b01c237c1cd509805f7ca13 |
|
MD5 | 402dab0707fae903d6b38089c07118f3 |
|
BLAKE2b-256 | 289db4d543c3ca5d9d0872f3fe9c171ac9fcad386b2a2973467956a41e92f20c |