django-eventlog stores event messages in a Django model.
Project description
.. image:: https://travis-ci.org/bartTC/django-eventlog.svg?branch=master
:target: https://travis-ci.org/bartTC/django-eventlog
.. image:: https://codecov.io/github/bartTC/django-eventlog/coverage.svg?branch=master
:target: https://codecov.io/github/bartTC/django-eventlog?branch=master
===============
django-eventlog
===============
django-eventlog is a very simple event logger you can use to track certain
actions in your code. Events are stored in a Django model and can be viewed
in the Django Admin.
Usage Example::
from eventlog import EventGroup
e = EventGroup() # Start a new Event Group
e.info('About to send 1000 mails.', # Trigger an Event
initiator='Mailer Daemon')
try:
# ... sending 1000 mails
e.info('All emails sent!', # Trigger an Event in the same group,
initiator='Mailer Daemon') # so they are combined in the admin.
except Exception:
e.error('There was an error sending the emails.',
initiator='Mailer Daemon')
Events can be grouped in a "Event Group" and when hovering over one item
in the admin, all events of the same group are highlighted.
.. image:: https://github.com/bartTC/django-eventlog/raw/master/docs/_static/screenshot.png
:scale: 100 %
Keep in mind:
=============
While looking similar, it's not intended to be a replacement for your
regular Python ``logging`` facility, rather an addition to it.
django-eventlog stores it's data in a regular database model, so each log entry
will trigger a SQL Insert. Therefore you should be careful using it in high
performance and/or high volume environments.
=========
Changelog
=========
0.9 (2018-02-13)
================
- Initial release.
- Django 1.8 to 2.0 compatibility.
- Python 2.7 to 3.6 compatibility.
:target: https://travis-ci.org/bartTC/django-eventlog
.. image:: https://codecov.io/github/bartTC/django-eventlog/coverage.svg?branch=master
:target: https://codecov.io/github/bartTC/django-eventlog?branch=master
===============
django-eventlog
===============
django-eventlog is a very simple event logger you can use to track certain
actions in your code. Events are stored in a Django model and can be viewed
in the Django Admin.
Usage Example::
from eventlog import EventGroup
e = EventGroup() # Start a new Event Group
e.info('About to send 1000 mails.', # Trigger an Event
initiator='Mailer Daemon')
try:
# ... sending 1000 mails
e.info('All emails sent!', # Trigger an Event in the same group,
initiator='Mailer Daemon') # so they are combined in the admin.
except Exception:
e.error('There was an error sending the emails.',
initiator='Mailer Daemon')
Events can be grouped in a "Event Group" and when hovering over one item
in the admin, all events of the same group are highlighted.
.. image:: https://github.com/bartTC/django-eventlog/raw/master/docs/_static/screenshot.png
:scale: 100 %
Keep in mind:
=============
While looking similar, it's not intended to be a replacement for your
regular Python ``logging`` facility, rather an addition to it.
django-eventlog stores it's data in a regular database model, so each log entry
will trigger a SQL Insert. Therefore you should be careful using it in high
performance and/or high volume environments.
=========
Changelog
=========
0.9 (2018-02-13)
================
- Initial release.
- Django 1.8 to 2.0 compatibility.
- Python 2.7 to 3.6 compatibility.
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
django-eventlog-0.9.tar.gz
(582.8 kB
view details)
Built Distribution
File details
Details for the file django-eventlog-0.9.tar.gz
.
File metadata
- Download URL: django-eventlog-0.9.tar.gz
- Upload date:
- Size: 582.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9913c2ef18243b2f6ecbf887060133ce59f3e73556cfac6100b3521dc30776de |
|
MD5 | 3b98e7062ee206a0fd83f446ceab93d9 |
|
BLAKE2b-256 | cd601ce6c6043076f42b74a3e19664eeee112db356f054483d155dd2066240d1 |
File details
Details for the file django_eventlog-0.9-py2.py3-none-any.whl
.
File metadata
- Download URL: django_eventlog-0.9-py2.py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2fb5e2aea6422a6bfe792a1a3d26b4034b64de668d28f44c0d9a287c5628c58 |
|
MD5 | 324f3429ef202bb8a4f79b7edd30abaf |
|
BLAKE2b-256 | a21081380a0becfa7df43edbb29ca92c010b9cd90cf6adfab054d78aab127e8f |