Django log viewer
Project description
Django Log Viewer allows you to read log files in the admin page by using DataTables. This project was modified from: https://bitbucket.org/inkalabsinc/django-log-viewer
Quick start
Include the log viewer URLconf in your project urls.py like this
pip install django-log-viewer
Add "log_viewer" to your INSTALLED_APPS setting like this
INSTALLED_APPS = [ ... "log_viewer", ]
Include the log viewer URLconf in your project urls.py like this
path('admin/log_viewer/', include('log_viewer.urls')),
In your settings file create the following value
LOG_VIEWER_FILES = ['logfile1', 'logfile2', ...] LOG_VIEWER_FILES_DIR = os.path.join(BASE_DIR, '../logs') LOG_VIEWER_MAX_READ_LINES = 1000 # total log lines will be read LOG_VIEWER_PAGE_LENGTH = 25 # total log lines per-page # Optionally you can set the next variables in order to customize the admin: LOG_VIEWER_FILE_LIST_TITLE = "Custom title" LOG_VIEWER_FILE_LIST_STYLES = "/static/css/my-custom.css"
Create/register the logging
import logging logger = logging.getLogger('my_handler') # eg: log_viewer_demo/log_viewer_demo/logger.py logger.info('My log') logger.warning('My log') logger.error('My log')
Start the development server and visit http://127.0.0.1:8000/admin/log_viewer/
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-log-viewer-1.0.5.tar.gz
(72.2 kB
view details)
File details
Details for the file django-log-viewer-1.0.5.tar.gz
.
File metadata
- Download URL: django-log-viewer-1.0.5.tar.gz
- Upload date:
- Size: 72.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3b44f4d171f7cf12791bde723a0381f23e22ae22626c0c5564cb8420f0c0f88 |
|
MD5 | 2593fabbee7eb149fc4bcfabfbf3e855 |
|
BLAKE2b-256 | 6e7a1fc2bbe168af9333c54faf74067ceb3ee42cfa9f600fd8edf58c3ef6ff00 |