Skip to main content

A simple Django app to write logging data to database

Project description

# dblogs
a package to add logging handlers to write logs into database in django project

# Quick start
1. Add "dblogs" to your INSTALLED_APPS settings;
2. Config loggings handlers to log stuff:

'handlers':{
'log_db':{
'level': 'WARNING',
'class': 'dblogs.handlers.DBHandler',
# model and expiry can be configured to your preference
# the default is dblogs.GeneralLog model and expiry is in no effect
'model': 'your.data.model',
'expiry': 10000, # unit is seconds
'formatter': 'simple',
},
}

3. Include the polls URLconf in your project urls.py;
4. Run 'python manage.py migrate' to create models to store logs;

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-dblogs-0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

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