Skip to main content

django-eventlog stores event messages in a Django model.

Project description


📖 Full documentation: https://barttc.github.io/django-eventlog/

Compatibility Matrix:

Py/Dj 3.8 3.9 3.10 3.11 3.12
3.2 (LTS)
4.0
4.1
4.2 (LTS)
5.0

django-eventlog

djang-eventlog Logo

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')

You can reuse an event group by specifying a group name and attach optional data. Data must be JSON serializable.

from eventlog import EventGroup

def purchase():
    e = EventGroup(group_id=f"Order {self.order.pk}")
    e.info("Sent order to Shopify", data={"items": [1, 2, 3]})

def subscribe_newsletter():
    e = EventGroup(group_id=f"Order {self.order.pk}")
    e.info("User subscribed to newsletter on checkout", data={"email": "user@example.com"})

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:

The details view of an event will list all other events of this group so you can track the progress:

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

2.1 (WIP)

  • The format and value of the random group id can now be specified using the AppConfig.
  • Various improvements to make the Event model swappable via the AppConfig.
  • Switch development tooling from Pipenv to Poetry

2.0 (2024-03-10)

  • Overall test and code refactor.

  • Documentation now done with MKDocs.

  • Timeline in Admin change form now supports delays of days and hours, instead of just minutes.

  • Backwards incompatible: Removed undocumented Event.objects.purge() queryset method.

  • Backwards incompatible: The list of event types defined in the app config is now set via Python dataclasses rather than a dictionary. The migration is straightforward.

    event_types = {
        "info": {
            "label": _("Info"),
            "color": None,
            "bgcolor": None,
        },
        "warning": {
            "label": _("Warning"),
            "color": None,
            "bgcolor": None,
        },
        # ...
    }
    

    The dictionary is now a EventTypeList of EventType dataclasses:

    from django.utils.translation import gettext_lazy as _
    from eventlog.datastructures import EventType, EventTypeList
    
    # List of event types to be used in events. A list of `EventType` classes
    event_types = EventTypeList(
        EventType(name="info", label=_("Info")),
        EventType(name="warning", label=_("Warning")),
        EventType(name="error", label=_("Error"), color="red"),
        EventType(name="critical", label=_("Critical"), color="white", bgcolor="red"),
    )
    

    You will only need to do this change if you've earlier overridden the event_type property.

1.5 (2024-03-08)

  • Event can have optional, JSON serializable data attached.
  • Fixed dark mode colors.
  • Various Admin UI improvements.

1.4 (2024-03-05)

  • Event groups can now have arbitrary names instead of UUIDs.
  • Event comments is a textfield.
  • Fixed potential migration warnings around AutoFields.

1.3 (2023-10-04)

  • Python 3.12 compatibility
  • Django 5.0 support
  • Type Annotations

1.2 (2023-04-28)

  • Python 3.7 to 3.11 compatibility
  • Django 3.2 to 4.2 support

1.1 (2018-05-11)

  • Added ability to manually set a group id to make an EventGroup object reusable through threads.

1.0 (2018-02-13)

  • Production ready 1.0 release.
  • The details Admin view now displays all events of the group with an annotated delay, so you can see the progress of the group.

0.9 (2018-02-13)

  • Initial release.
  • Django 1.8 to 2.0 compatibility.
  • Python 2.7 to 3.6 compatibility.

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_eventlog-2.1a1.tar.gz (15.7 kB view details)

Uploaded Source

Built Distribution

django_eventlog-2.1a1-py3-none-any.whl (18.3 kB view details)

Uploaded Python 3

File details

Details for the file django_eventlog-2.1a1.tar.gz.

File metadata

  • Download URL: django_eventlog-2.1a1.tar.gz
  • Upload date:
  • Size: 15.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0

File hashes

Hashes for django_eventlog-2.1a1.tar.gz
Algorithm Hash digest
SHA256 1b7c58fa136eab8f5b5228ce6646237e3e74da06d2ea4c0e44f32a87490ba6d6
MD5 bf4b77fee010909dd689b40a81830533
BLAKE2b-256 6228b1a18065bd37e38c6e31ccaa6bbb73cc4987ca5552c5aa0ed17dab745e83

See more details on using hashes here.

File details

Details for the file django_eventlog-2.1a1-py3-none-any.whl.

File metadata

  • Download URL: django_eventlog-2.1a1-py3-none-any.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0

File hashes

Hashes for django_eventlog-2.1a1-py3-none-any.whl
Algorithm Hash digest
SHA256 468a47ad5293e6ecd73daa1b48f5c03050f58612154bbc97fe1e2e6bde83646c
MD5 de083c5b632ab9147f52e849dbc02fa1
BLAKE2b-256 6efa6578f508d82e6b15d99c1fd0595fa87f8d4eaa229ed37f9d60bb7e81c453

See more details on using hashes here.

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