Skip to main content

A standalone Django package to stream logs over WebSockets.

Project description

Django Live Logs

A lightweight, zero-configuration package that streams your Django server logs directly to a beautiful, real-time web dashboard using WebSockets and Redis.

Django Live Logs Dashboard (Imagine a beautiful dark-mode dashboard here)

Features

  • 🚀 Real-Time Streaming: Uses Django Channels and Redis to push logs instantly.
  • 🎨 Built-In Dashboard: Comes with a sleek, dark-mode Tailwind CSS interface out of the box.
  • 🛡️ Secure by Default: Dashboard and WebSockets are natively protected by Django's @staff_member_required and Session cookies.
  • 🧵 Non-Blocking: Dispatches logs in a background thread to prevent ASGI async event loop collisions.
  • 🔍 Filtering: Instantly filter between INFO, WARNING, and ERROR logs.

1. Installation

Install the package via pip:

pip install django-live-logs

Note: This package requires channels and channels-redis to be installed and configured in your project.

2. Configuration

Step A: Update settings.py

Add the package to your installed apps:

INSTALLED_APPS = [
    # ...
    'django_live_logs',
]

Authentication Options: By default, the dashboard requires users to be logged into the standard Django Admin interface as a Superuser. If you prefer to use a shared team password instead of Django sessions, simply add this variable:

LIVE_LOGS_PASSWORD = "your-secure-team-password"

Configure your LOGGING dictionary to catch everything (the root logger) and send it to the WebSocket handler:

LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'handlers': {
        'console': {'class': 'logging.StreamHandler'},
        'websocket': {'class': 'django_live_logs.handlers.WebSocketLogHandler'},
    },
    'root': {
        'handlers': ['console', 'websocket'],
        'level': 'INFO',
    },
    'loggers': {
        'django': {
            'handlers': ['console', 'websocket'],
            'level': 'INFO',
            'propagate': False,
        }
    },
}

Step B: Route the Dashboard (HTTP)

In your main urls.py, include the dashboard URL:

from django.urls import path, include

urlpatterns = [
    # ...
    path('live-logs/', include('django_live_logs.urls')),
]

Step C: Route the WebSockets (ASGI)

In your asgi.py, you need to route the WebSockets. Because django-live-logs uses the Django Admin session to authenticate the UI, it requires Django's AuthMiddlewareStack.

If your entire application uses Session Auth, simply wrap your URLRouter:

from channels.auth import AuthMiddlewareStack
from django.urls import path, include
import django_live_logs.routing

application = ProtocolTypeRouter({
    "http": get_asgi_application(),
    "websocket": AllowedHostsOriginValidator(
        AuthMiddlewareStack(
            URLRouter(
                your_app_routing.websocket_urlpatterns + 
                django_live_logs.routing.websocket_urlpatterns
            )
        )
    ),
})

Advanced: Using JWT / Custom Auth in your main app? If your main application uses custom JWT auth and you want to completely isolate AuthMiddlewareStack so it doesn't interfere with your custom websockets, use a branching router:

from django.urls import re_path
from channels.auth import AuthMiddlewareStack
from your_app.middleware import CustomTokenAuthMiddleware
import django_live_logs.routing

application = ProtocolTypeRouter({
    "http": get_asgi_application(),
    "websocket": AllowedHostsOriginValidator(
        URLRouter([
            # 1. Isolate Session Auth strictly to the Live Logs endpoint
            re_path(r"^ws/live-logs/", AuthMiddlewareStack(URLRouter(django_live_logs.routing.websocket_urlpatterns))),
            
            # 2. Use your custom JWT auth for everything else
            re_path(r"^", CustomTokenAuthMiddleware(URLRouter(your_app_routing.websocket_urlpatterns))),
        ])
    ),
})

3. Usage

Simply run your Django server:

python manage.py runserver

Navigate to /live-logs/ in your browser. If LIVE_LOGS_PASSWORD is configured, type in your team password. If not, it will fall back to requiring a standard Django superuser session. Once authenticated, the dark mode dashboard will connect via WebSockets, and any logging.info(), logging.error(), etc., triggered anywhere in your backend will stream to your screen instantly!


Troubleshooting & Production

CSRF & Origin Headers (403 Forbidden)

If you deploy your app behind a reverse proxy (like Nginx) with HTTPS, Django's security middleware or Channels' AllowedHostsOriginValidator might block your connections. Ensure your settings.py is configured with your production domains:

ALLOWED_HOSTS = ["your-domain.com"]

# Trust your domain for CSRF and WebSocket origins
CSRF_TRUSTED_ORIGINS = [
    "https://your-domain.com",
    "http://your-domain.com",
]

How it Works

The custom WebSocketLogHandler intercepts Python logs. Instead of blocking the main thread, it tosses the log payload to a daemon thread. The daemon thread safely uses async_to_sync to dispatch the JSON payload to the Redis Channel Layer. Finally, the Django Channels WebSocket consumer securely beams it to the authenticated frontend UI.

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_live_logs-0.1.7.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_live_logs-0.1.7-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file django_live_logs-0.1.7.tar.gz.

File metadata

  • Download URL: django_live_logs-0.1.7.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for django_live_logs-0.1.7.tar.gz
Algorithm Hash digest
SHA256 de4554cf5ed253163b8128ec87c14cbf7c6fcafb6db4c56d3927d91ad396390e
MD5 006afb0260d4b153c2ec90862cad8969
BLAKE2b-256 160d73ee2a70741e7137897c32de543fc053933a4e95a3bc1557e8e6a11402be

See more details on using hashes here.

File details

Details for the file django_live_logs-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_live_logs-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 be8f0b78b5e3b0b9ba5e69369c5c928c2f7254753bf24cee9bddf3ae55614e77
MD5 7d4267a3f5340f2031833b3504ef310e
BLAKE2b-256 4dbc2e0b95a0c4dedbdfa3fd9e25e1c7990a28d9f6a9e7d5c99e62e9948dc807

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page