Skip to main content

Plugin for django to support Google Structured Logger

Project description

Django Google Structured Logger

PyPI version Python Versions Django Versions

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:

  1. Detailed Logging: Logs both requests and responses with meticulous details.
  2. Sensitive Data Masking: Masks sensitive information using customizable regex patterns.
  3. Google Cloud Logging Support: Formats logs to match Google Cloud Logging standards.
  4. Configurable Settings: Customize log behavior through Django settings.

Usage:

Installation

You can install the package using pip:

pip install django-google-structured-logger

Configuration

  1. Add GoogleFormatter to your Django's LOGGING setting. Example:

     LOGGING = {
         "version": 1,
         "disable_existing_loggers": False,
         "formatters": {
             "json": {
                 "()": "django_google_structured_logger.formatter.GoogleFormatter",
             },
         },
         "handlers": {
             "console": {
                 "level": "INFO",
                 "class": "logging.StreamHandler",
             },
             "google-json-handler": {
                 "class": "logging.StreamHandler",
                 "formatter": "json",
             },
         },
         "root": {
             "handlers": [env.str("DJANGO_LOG_HANDLER", "google-json-handler")],
             "level": env.str("ROOT_LOG_LEVEL", "INFO"),
         },
         "loggers": {
             "()": {
                 "handlers": [env.str("DJANGO_LOG_HANDLER", "google-json-handler")],
                 "level": env.str("DJANGO_LOG_LEVEL", "INFO"),
             },
             "django": {
                 "handlers": [env.str("DJANGO_LOG_HANDLER", "google-json-handler")],
                 "level": env.str("DJANGO_LOG_LEVEL", "INFO"),
                 "propagate": False,
             },
             "django.server": {
                 "handlers": [env.str("DJANGO_LOG_HANDLER", "google-json-handler")],
                 "level": env.str("DJANGO_SERVER_LEVEL", "ERROR"),
                 "propagate": False,
             },
             "django.request": {
                 "handlers": [env.str("DJANGO_LOG_HANDLER", "google-json-handler")],
                 "level": env.str("DJANGO_REQUEST_LEVEL", "ERROR"),
                 "propagate": False,
             },
         },
     }
    
  2. Add SetRequestToLoggerMiddleware to your Django's MIDDLEWARE setting.

    Django middleware:

    MIDDLEWARE = [
        ...
        # Ordering is important:
        "django_google_structured_logger.middlewares.SetUserContextMiddleware",  # Set user context to logger.
        "django_google_structured_logger.middlewares.LogRequestAndResponseMiddleware",  # Log request and response.
    ]
    

    GRAPHENE middleware:

     GRAPHENE = {
          "MIDDLEWARE": [
               ...
               "django_google_structured_logger.graphene_middlewares.GrapheneSetUserContextMiddleware",  # Set user context to logger.
          ]
     }
    
  3. 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 DEFAULT_SENSITIVE_KEYS.
  • LOG_MASK_STYLE: Style for masking sensitive data. Default is "partially".
  • LOG_MIDDLEWARE_ENABLED: Enable or disable the logging middleware. Default is True.
  • LOG_EXCLUDED_HEADERS: List of request headers to exclude from logging. Defaults DEFAULT_SENSITIVE_HEADERS.
  • LOG_USER_ID_FIELD: Field name for user ID. Default is "id".
  • LOG_USER_DISPLAY_FIELD: Field name for user email. Default is "email".
  • LOG_MAX_DEPTH: Maximum depth for data to be logged. Default is 4.

Note:

  • All settings are imported from django_google_structured_logger.constants.

Other Notes:

  • extra kwargs passed to logger, for example:
    logger.info("some message", extra={"some_key": "some_data}
    
    will be logged as structured data in the jsonPayload field in Google Cloud Logging. Any data passed to extra kwargs will not be abridged or masked.
  • extra kwargs passed to logger may override any default fields set by GoogleFormatter.

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


Download files

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

Source Distribution

django_google_structured_logger-2.8.11.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file django_google_structured_logger-2.8.11.tar.gz.

File metadata

File hashes

Hashes for django_google_structured_logger-2.8.11.tar.gz
Algorithm Hash digest
SHA256 543ffb4921bd6ec576ff9878a5dfd326fceb092dd97c8e003f9473780f6378e8
MD5 e68b460c411c47038506a14a1b7b296a
BLAKE2b-256 a7b397807e817e3b183e60dadac1c8ad6c78e9fdb4e08b1c5cc2781c19da43fc

See more details on using hashes here.

File details

Details for the file django_google_structured_logger-2.8.11-py3-none-any.whl.

File metadata

File hashes

Hashes for django_google_structured_logger-2.8.11-py3-none-any.whl
Algorithm Hash digest
SHA256 05004abf332913a0e7bc013150008a9e89f01337d6af84d7476388c2675803ba
MD5 60af9fd4d6c5471db81e5a8a67983201
BLAKE2b-256 6e07f7d813b40a3ed42d237cbc9aef4bd0aebcef334fc1844b762bf63b132331

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