Skip to main content

Middleware to log requests in Django with more detailed information.

Project description

pipeline status coverage report Code style: black python version license latest version

django-detailed-request-logging

Releases

This project follows the semantic versioning specification for its releases.

Development

Requirements

  • Python >=3.7
  • Django >=3.2
  • django-rest-framework >=3.12

Setup

  • Create and activate a python3 venv.
  • Install the library in the editable mode pip install -e .[test,stubs]
  • Install dev requirements pip install -r requirements-dev.txt.
  • Install git hooks to automatically format code using black with pre-commit install

Installation

From git in requirements.txt

To install this package from this git repository, add the django-detailed-request-logging package to the requirements.txt file.

To use it, add the following entry to MIDDLEWARE inside of your settings.py file:

MIDDLEWARE = [
    ...,
    "django_detailed_request_logging.middleware.LoggingMiddleware",
]

Then, add a new entry LOGGING_REQUEST_MIDDLEWARE to your settings.py file, changing the value of apps to the names of the apps you want to log requests on and changing the value of skip_methods to include all HTTP methods you do NOT want to get logged:

LOGGING_REQUEST_MIDDLEWARE = {
    "apps": ("projects",),
    "skip_methods": ("OPTIONS",),
}

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-detailed-request-logging-1.2.0.tar.gz (7.7 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page