Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattdeboard/django-admin-sentry
A friendlier interface for Django admin logs.
https://github.com/mattdeboard/django-admin-sentry
Last synced: 23 days ago
JSON representation
A friendlier interface for Django admin logs.
- Host: GitHub
- URL: https://github.com/mattdeboard/django-admin-sentry
- Owner: mattdeboard
- Created: 2011-07-14T21:02:40.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-08-12T19:42:11.000Z (about 13 years ago)
- Last Synced: 2024-04-17T09:52:27.647Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 397 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG
Awesome Lists containing this project
README
===================
django-admin-sentry
===================django-admin-sentry is an interactive admin log viewer designed to let you do something useful with your logs.
As of this sub-1.0 release, interaction with the admin logging system is fairly limited, but it is more robust than the default system. (Admittedly, this isn't saying much.)
Also included is a LogEntryAdmin view, so your log entries will be browsable from the normal admin panel. :)
-------------
Installation
-------------First, install the package:
`$ pip install git+git://github.com/mattdeboard/django-admin-sentry.git`
Then, add the following to your package's settings.INSTALLED_APPS:
'paging',
'admin_sentry','paging' must precede 'admin_sentry'.
Finally, add the following lines to your project's `urls.py`:import admin_sentry
urlpatterns = pattern('',
...
(r'^admin_sentry/', include('admin_sentry.urls')),
...-----------
Logging in
-----------Navigate to `yourdomain.com/admin_sentry`. If you are not logged into your app's admin panel, you'll be prompted to log in. Once you do, you'll then see the interface.
--------
Credits
--------django-admin-sentry is modeled on heavily David Cramer's excellent `django-sentry `_. If you are familiar with Sentry then AdminSentry will not seem foreign to you whatsoever.