Django eduNEXT Audit Model
Project description
Eox-audit-model is a Django application designed to provide an audit model for tracking and logging changes within the Open edX platform. This plugin saves information in the database about executed methods, creating a detailed audit trail of various operations. Developed as part of the Edunext Open edX Extensions (EOX), eox-audit-model assists administrators and developers in maintaining comprehensive monitoring and ensuring better oversight of the platform’s activities.
Features
Detailed Audit Logging: Capture comprehensive logs of method executions, including parameters, results, and any generated logs.
Automatic Traceback Capture: Automatically log traceback information if an exception occurs during method execution.
User Tracking: Record the user who initiated the method, providing accountability and traceability.
Flexible Logging Mechanisms: Log actions either by directly calling a method or using a decorator for convenience.
Customizable Notes: Add custom notes to logs for additional context and information.
Comprehensive Monitoring: Maintain an extensive audit trail for better monitoring and oversight of platform activities.
Installation
Install eox-audit-model in Tutor with OPENEDX_EXTRA_PIP_REQUIREMENTS` setting in the config.yml:
OPENEDX_EXTRA_PIP_REQUIREMENTS: - eox-audit-model=={{version}}
Add eox_audit_model to INSTALLED_APPS`, you can create a Tutor plugin, e.g.:
from tutor import hooks hooks.Filters.ENV_PATCHES.add_item( ( "openedx-lms-common-settings", "settings.INSTALLED_APPS.append('eox_audit_model.apps.EoxAuditModelConfig')" ) )
Save the configuration with tutor config save.
Build the image and launch your platform with tutor local launch.
Compatibility notes
Open edX Release |
Version |
---|---|
Juniper |
>=0.2, <0.4 |
Koa |
>=0.4, <=0.7 |
Lilac |
>=0.4, <=0.7 |
Maple |
>=0.7, <1.0 |
Nutmeg |
>=1.0, <5.0 |
Olive |
>=2.0, <5.0 |
Palm |
>=3.0, <5.0 |
Quince |
>=4.0 |
Redwood |
>=4.2.0 |
Usage
Eox-audit-model can be used to audit any execution of a method or function. This will create a database record with the following information:
Status: If the process was successful or not.
Action: The given string to identify the process.
Timestamp: The execute date.
Method name: Method or function name.
Captured log: Logs generated in the execution.
Traceback log: If there is an exception, this will contain the traceback.
Site: Current site.
Performer: The user who started the method; depends on the request.user.
Input: The values used to execute the method.
Output: The value returned by the method.
Ip: Current IP.
There are two primary ways to use the plugin:
Direct Method Call
You can log an action directly by importing the model and calling the execute_action method. This method requires several parameters to log the information:
action: A string describing the action, e.g., ‘Add view info’.
method: The method being executed.
parameters: A dictionary containing positional arguments (args) and keyword arguments (kwargs).
notes: An optional list of dictionaries for storing custom information.
Example:
from eox_audit_model.models import AuditModel
def any_method(parameter1, parameter2, parameter3):
"""Do something"""
return 'Success'
def audit_process():
"""Execute audit process"""
action = "This is a simple action"
parameters = {
"args": (2, 6),
"kwargs": {"parameter3": 9},
}
expected_value = AuditModel.execute_action(action, any_method, parameters)
...
Using the Decorator
The plugin also provides a decorator that can be used to log method executions automatically. The decorator handles calling the execute_action method behind the scenes and saves the information for you.
Example:
from eox_audit_model.decorators import audit_method
@audit_method(action="This is a simple action")
def any_method(parameter1, parameter2, parameter3):
"""Do something"""
return 'Success'
def audit_process():
"""Execute audit process"""
expected_value = any_method(3, 6, 9)
...
License
This software is licensed under the terms of the AGPLv3. See the LICENSE file for details.
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
File details
Details for the file eox_audit_model-5.0.0.tar.gz
.
File metadata
- Download URL: eox_audit_model-5.0.0.tar.gz
- Upload date:
- Size: 30.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62e23c03572ddc3d5ccbe1da8e7ee79d4cf0ba7966841e383c9c84e2159e3c0d |
|
MD5 | ef081f77875e555f2d3088fddcc127a8 |
|
BLAKE2b-256 | 70983e9cf19cbb6b06f93c6acde5c6d580418d8ff4c797578f64569fd601d08d |
File details
Details for the file eox_audit_model-5.0.0-py3-none-any.whl
.
File metadata
- Download URL: eox_audit_model-5.0.0-py3-none-any.whl
- Upload date:
- Size: 32.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 754ae6e7b1790bd6f29a4c2eed778ccb51c9525acae52aa652bb32eb8921dd36 |
|
MD5 | bbfcba5dc0107772fde57278f8ad2e0c |
|
BLAKE2b-256 | faa17730b57dec823b2d0f7bbf5e36bd409d4736fe6f1c4be46997205a45d4f0 |