Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mhsiddiqui/django-error-report
Log/View Django server errors.
https://github.com/mhsiddiqui/django-error-report
Last synced: about 2 months ago
JSON representation
Log/View Django server errors.
- Host: GitHub
- URL: https://github.com/mhsiddiqui/django-error-report
- Owner: mhsiddiqui
- License: mit
- Created: 2017-06-24T09:28:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-05T22:53:51.000Z (over 1 year ago)
- Last Synced: 2024-08-14T22:02:10.929Z (5 months ago)
- Language: Python
- Size: 42 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
django-error-report
===================View all Django Error detail in Django Admin.
Error-report save Django error traceback and details which would be the
same beautiful exception page that Django displays when debugging is
enabled and saves it to the database so you can view it later.It’s simple alternative to django-sentry which is a paid option to see
error detail.You can create issues for feature you want in django-error-report in
future.Features
========- A simple user interface for browsing error records in the database.
Requirements
============- Python 2.7, 3.6
- Django > 1.7Installation
============1. To install, simply run:
pip install django-error-report
2. Add ``error_report`` to your ``INSTALLED_APPS`` setting.
3. Add below in your ``urls.py`` fileurl(r'^error/', include('error_report.urls'))
4. Add ``error_report.middleware.ExceptionProcessor`` in your middlewares
5. Run ``manage.py migrate`` to create the database tables.Configuration
=============Required settings for Django-error-report should be added in settings.py
file like thisERROR_DETAIL_SETTINGS = {
"CONFIGURATION_OPTION": VALUE
}Available configuration options are below - ERROR\_DETAIL\_ENABLE:
1. ERROR\_DETAIL\_ENABLE: Should Log error detail or not (True/False)
2. ERROR\_DETAIL\_HEIGHT: Height of Iframe in admin (in pixels)