A reusable django [DRF] application that handles auditing of requests, logins and process
Project description
DRF Audit Trail
A reusable Django [DRF] application that handles auditing of requests and logins.
Features
- Request audit trail
- Logins audit trail
- Integration with simplejwt
- Support for Django Async
- Thread Safe
- Error tracking
Usage
To use this app, you need to install it, add it to the Django INSTALLED_APPS, and configure the middleware in your Django settings.
Installation
pip install drf-audit-trail
Configuration
Add to Django INSTALLED_APPS
# settings.py
INSTALLED_APPS = [
...
"drf_audit_trail",
]
Configure the middleware
Add to Django MIDDLEWARE configuration
# settings.py
MIDDLEWARE = [
...
"drf_audit_trail.middleware.RequestLoginAuditEventMiddleware",
]
Settings
In your settings.py, configure
DRF_AUDIT_TRAIL_REQUEST_AUDIT_URLS: A list that accepts regex patterns indicating which URLs should be tracked.
Example:
Default: [r"^/api/.*?/"]
DRF_AUDIT_TRAIL_REQUEST_AUDIT_URLS = [r"^/api/.*?/"]
This means that all requests starting with /api/ will be tracked.
DRF_AUDIT_TRAIL_AUTH_URL: The endpoint used to authenticate users.
Default: /api/token/
DRF_AUDIT_TRAIL_AUTH_URL = "/api/token/"
DRF_AUDIT_TRAIL_AUTH_STATUS_CODE_FAILED: The status code returned when the auth request failed
Default: 401
DRF_AUDIT_TRAIL_AUTH_STATUS_CODE_FAILED = 401
Flow
DER
RequestLoginAuditEventMiddleware class diagram
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file drf_audit_trail-0.3.6.tar.gz.
File metadata
- Download URL: drf_audit_trail-0.3.6.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.10.12 Linux/6.8.0-60-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5efb677920269cf25f1ec64c67f97a5ee4565a0cbfc13503a3028ec850c3c8a0
|
|
| MD5 |
819a40165056927090f68bd268592b34
|
|
| BLAKE2b-256 |
f689949b98e1579b7a9aeec363f16673518d6aa044b4d38c62269010068dc97b
|
File details
Details for the file drf_audit_trail-0.3.6-py3-none-any.whl.
File metadata
- Download URL: drf_audit_trail-0.3.6-py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.10.12 Linux/6.8.0-60-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d109b2250493c93f5b5af4b84a2113ea1a36b5763c18bd7c8aed9609d39eff4a
|
|
| MD5 |
4f4b517bd11dd5963dac58adb4fe50ee
|
|
| BLAKE2b-256 |
17bd7311fde5a832ff003cff0a41ab183e02ce403b62ba8a51fbeed7b536f5b5
|