Skip to main content

Read and Download log files

Project description

Django Log Inspector

Fast and Live view to your log files

version Open Source GitHub

Django Log Inspector offers real-time monitoring and analysis of log files in Django projects. It delivers a fast and live view of log data, eliminating manual page refreshing. With an intuitive interface and live update functionality, it streamlines log file management for easier issue tracking and troubleshooting in Django applications.

Django Log Inspector is available directly from PyPI:

Installation

pip install django-log-inspector

Add in INSTALLED_APPS

installed_apps = [
    ...
    'log_inspector',
]

Include in the URLconf

path('logs/', include('log_inspector.urls')),

Settings

 LOG_INSPECTOR_FILES = ['logfile1', 'logfile2', ...]
 LOG_INSPECTOR_FILES_PATTERN = '*.log*'
 LOG_INSPECTOR_FILES_DIR = 'logs/'
 LOG_INSPECTOR_PAGE_LENGTH = 25       # total log lines per-page
 LOG_INSPECTOR_MAX_READ_LINES = 1000  # total log lines will be read
 LOG_INSPECTOR_FILE_LIST_MAX_ITEMS_PER_PAGE = 25 # Max log files loaded in Datatable per page
 LOG_INSPECTOR_PATTERNS = ['[INFO]', '[DEBUG]', '[WARNING]', '[ERROR]', '[CRITICAL]']
 LOG_INSPECTOR_EXCLUDE_TEXT_PATTERN = None  # String regex expression to exclude the log from line

 # Optionally you can set the next variables in order to customize the admin:
 LOG_INSPECTOR_FILE_LIST_TITLE = "Custom title"
 LOG_INSPECTOR_FILE_LIST_STYLES = "/static/css/my-custom.css"

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_log_inspector-0.0.5.tar.gz (44.4 kB view hashes)

Uploaded Source

Built Distribution

django_log_inspector-0.0.5-py3-none-any.whl (49.7 kB view hashes)

Uploaded Python 3

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