Skip to main content

A Django app to log management commands

Project description

https://travis-ci.org/achedeuzot/django-commandlog.svg?branch=master https://coveralls.io/repos/github/achedeuzot/django-commandlog/badge.svg?branch=master

Django CommandLog adds the feature of logging the django management commands into the database so it’s available in the admin interface.

We’ve been using this to check the result of scheduled management commands directly through the admin interface. It works by copying the stream of stdout and stderr.

The decorator also adds some helper methods, see below.

Quick start

  1. Add “django_commandlog” to your INSTALLED_APPS settings like this:

INSTALLED_APPS = [
    ...
    'django_commandlog',
]
  1. Run python manage.py migrate to add the tables of django_commandlog to your database.

3. To log an admin command, add the @command_log decorator above the class (see example below). Thus, it currently supports only custom management commands. If you wish to add this to default django manage commands you’ll have to create a child class with the decorator. Pull/Merge requests are welcome with a fix for this.

@command_log
class SampleCommand(BaseCommand):

    def handle(self, *args, **options):
        ...

Configuration

There are currently no configuration values.

Helper methods

When your class is decorated with @command_log, you have access to additional methods.

CommandLog includes counters for basic CRUD operations (Create, Read, Update, Delete) which can be used through helper methods provided:

add_log_created(10)
add_log_read(30)
add_log_updated(20)
add_log_deleted(30)
add_log_errors(14)

There are two fields used to track the commands or runs: reference and user. Reference is any number you want to track in your manage commands.

You can also add a user to the tracking by using the add_log_user(user) method. user can be a string which will be kept as-is or you can use a settings.AUTH_USER_MODEL object.

add_log_reference("C1235342321")
add_log_user("user:ldap:username")
# or
add_log_user(user_instance)

Requirements

  • python 2.7, 3.4, 3.5

  • django 1.10

Tested on Django 1.10.3

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-commandlog-0.1.10.tar.gz (10.0 kB view details)

Uploaded Source

File details

Details for the file django-commandlog-0.1.10.tar.gz.

File metadata

File hashes

Hashes for django-commandlog-0.1.10.tar.gz
Algorithm Hash digest
SHA256 1da886179f247fe5d89ae0897e2950fa3b03ef4e6e162270e321be558802fa43
MD5 5a161bfe9601999000fbb49d123553cb
BLAKE2b-256 b4b4ef70bb4c8fa960a41c0b5ea033812beb8e052d83f6869a34624eb59dd813

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