Formats Django logs in ASIM format.
Project description
Django ASIM log formatter
The library formats Django logs in ASIM format.
Mapping to the format may not be complete, but best effort has been made to create logical field mappings.
If you need to amend the mapping, you can implement a custom formatter.
Installation
pip install django-log-formatter-asim
Usage
Using in a Django logging configuration:
from django_log_formatter_asim import ASIMFormatter
LOGGING = {
...
"formatters": {
"asim_formatter": {
"()": ASIMFormatter,
},
},
'handlers': {
'asim': {
'formatter': 'asim_formatter',
...
},
},
"loggers": {
"django": {
"handlers": ["asim"],
...
},
},
}
Dependencies
This package uses Django IPware for IP address capture.
This package is compatible with Django User Agents which, when used, will enhance logged user agent information.
Settings
DLFA_LOG_PERSONALLY_IDENTIFIABLE_INFORMATION
- the formatter checks this setting to see if personally identifiable information should be logged. If this is not set to true, only the user's id is logged.
DLFA_TRACE_HEADERS
- used for defining custom zipkin headers, the defaults is ("X-Amzn-Trace-Id")
, but for applications hosted in GOV.UK PaaS you should use ("X-B3-TraceId", "X-B3-SpanId")
. If you are running your application in both places side by side during migration, the following should work in your Django settings:
DLFA_INCLUDE_RAW_LOG
- By default the original unformatted log is not included in the ASIM formatted log. You can enable that by setting this to True
and it will be included in AddidtionalFields.RawLog
.
from dbt_copilot_python.utility import is_copilot
if is_copilot():
DLFA_TRACE_HEADERS = ("X-B3-TraceId", "X-B3-SpanId")
Formatter classes
ASIM_FORMATTERS = {
"root": ASIMSystemFormatter,
"django.request": ASIMRequestFormatter,
}
The default class for other loggers is:
ASIMSystemFormatter
Creating a custom formatter
If you wish to create your own ASIM formatter, you can inherit from ASIMSystemFormatter and call _get_event_base to get the base level logging data for use in augmentation:
class ASIMSystemFormatter(ASIMFormatterBase):
def get_event(self):
logger_event = self._get_event_base()
# Customise logger event
return logger_event
Contributing to the django-log-formatter-asim
package
Getting started
-
Clone the repository:
git clone https://github.com/uktrade/django-log-formatter-asim.git && cd django-log-formatter-asim
-
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.
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
Built Distribution
Hashes for django_log_formatter_asim-0.0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16a9128dc1725840f5127f500150acf3e03f1790b149aba79c60a5715d25c32a |
|
MD5 | 8f380bb28058dbe7aacc4d11e3c86f04 |
|
BLAKE2b-256 | 350558fbdfc293f96083a08df2fed6d3fb75f27b02c560831f47404a18d5c616 |
Hashes for django_log_formatter_asim-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e45716363a79836dec7f1cf4c3f10fda3bdff1c11e0549752a754c0ae7cf08a |
|
MD5 | 96d76494e358716fd4fa946b0e16f757 |
|
BLAKE2b-256 | a49e9139813cdff218bfce6c53f136ddad223d7094938c189089b5416d994a7f |