Skip to main content

Formats Django logs in ECS format.

Project description

Django ECS log formatter

The library formats Django logs in ECS format.

https://www.elastic.co/guide/en/ecs/current/index.html

Mapping to the format is incomplete and best effort has been made to create logical field mappings between Django and ECS.

If you need to amend the mapping you can implement a custom formatter (see below).

Installation

pip install django-log-formatter-ecs

Usage

Using in a Django logging configuration:

from django_log_formatter_ecs import ECSFormatter

LOGGING = {
    ...
    "formatters": {
        "ecs_formatter": {
            "()": ECSFormatter,
        },
    },
    'handlers': {
        'ecs': {
            'formatter': 'ecs_formatter',
            ...
        },
    },
    "loggers": {
        "django": {
            "handlers": ["ecs"],
            ...
        },
    },
}

Dependencies

This package uses kubi_ecs_logger https://github.com/kumina/kubi_ecs_logger for base ECS formatting

This package uses Django IPware https://github.com/un33k/django-ipware for IP address capture.

This package is compatible with django-user_agents https://pypi.org/project/django-user-agents/ which, when used, will enhance logged user agent information.

Settings

DLFE_APP_NAME - used to define the application name that should be logged.

DLFE_LOG_SENSITIVE_USER_DATA - the formatter checks this setting to see if user information should be logged. If this is not set to true, only the user's id is logged.

DLFE_ZIPKIN_HEADERS - used for defining custom zipkin headers, the defaults is :code:("X-B3-TraceId" "X-B3-SpanId")

The Django configuration file logged is determined by running:

os.getenv('DJANGO_SETTINGS_MODULE')

Formatter classes

    ECS_FORMATTERS = {
        "root": ECSSystemFormatter,
        "django.request": ECSRequestFormatter,
        "django.db.backends": ECSSystemFormatter,
    }

The default class for other loggers is:

    ECSSystemFormatter

Creating a custom formatter

If you wish to create your own ECS formatter, you can inherit from ECSSystemFormatter and call _get_event_base to get the base level logging data for use in augmentation:

    class ECSSystemFormatter(ECSFormatterBase):
        def get_event(self):
            logger_event = self._get_event_base()

            # Customise logger event

            return logger_event

Contributing to the django-log-formatter-ecs package

Getting started

  1. Clone the repository:

    git clone https://github.com/uktrade/django-log-formatter-ecs.git && cd django-log-formatter-ecs
    
  2. Install the required dependencies:

    pip install poetry && poetry install && poetry run pre-commit install
    

Testing

Automated testing

Run poetry run pytest in the root directory to run all tests.

Or, run poetry run tox in the root directory to run all tests for multiple Python versions. See the tox configuration file.

Publishing

  1. Acquire API token from Passman.
    • Request access from the SRE team.
    • Note: You will need access to the platform group in Passman.
  2. Run poetry config pypi-token.pypi <token> to add the token to your Poetry configuration.

Update the version, as the same version cannot be published to PyPI.

poetry version patch

More options for the version command can be found in the Poetry documentation. For example, for a minor version bump: poetry version minor.

Build the Python package.

poetry build

Publish the Python package.

Note: Make sure your Pull Request (PR) is approved and contains the version upgrade in pyproject.toml before publishing the package.

poetry publish

Check the PyPI Release history to make sure the package has been updated.

For an optional manual check, install the package locally and test everything works as expected.

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_log_formatter_ecs-0.0.7.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

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

django_log_formatter_ecs-0.0.7-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file django_log_formatter_ecs-0.0.7.tar.gz.

File metadata

  • Download URL: django_log_formatter_ecs-0.0.7.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.11.5 Darwin/23.5.0

File hashes

Hashes for django_log_formatter_ecs-0.0.7.tar.gz
Algorithm Hash digest
SHA256 6b60c84d6f170c906dc3821f40cb6b7a395ff71c050fba83c063d93a93ee1932
MD5 098b6720387874cce1f815277474cce8
BLAKE2b-256 d49db5947cd9c14426584ae1586c971bb5977f5357339bf2a37eef57e0ea5925

See more details on using hashes here.

File details

Details for the file django_log_formatter_ecs-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_log_formatter_ecs-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 4f0ba3df16f6bcfc7723d6567c39604333604e61d606355eaf44072be9ab88e6
MD5 ffc2bafcb28b011b38856dd2418dbf19
BLAKE2b-256 e9d7f274b8b7aa49656b47542ace1a2b91c4ec6dba8b35346b9c7fe983496c9a

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