Вход на сайт

Просмотр новости

Найдите то, что Вас интересует

dj-celery-panel: Celery Task Inspector for Django Admin

Дата публикации: 05-02-2026 21:01:05



Основное содержимое страницы с новостью.

Django Control Room Panel Tests codecov PyPI version Python versions License: MIT Downloads

DJ Celery Panel brings Celery monitoring directly into the Django Admin.

DJ Celery Panel

Compatible with dj-control-room. Register this panel in the Control Room to manage it from a centralized dashboard.

Docs

https://django-control-room.github.io/dj-celery-panel/

Features
  • Workers Monitoring: View active Celery workers, their status, pool type, and concurrency
  • Task Management: Browse and inspect Celery tasks with detailed information
  • Queue Overview: Monitor configured queues and their routing
  • Periodic Tasks: View scheduled periodic tasks and their schedules
  • Real-time Inspection: Live data from Celery's inspect API
  • Django Admin Integration: Seamlessly integrated into your existing Django admin interface
  • Swappable Backends: Pluggable architecture for custom data sources and monitoring integrations (see Configuration)

Requirements
  • Python 3.9+
  • Django 4.2+

Screenshots

Django Admin Integration

Seamlessly integrated into your Django admin interface. A new section for dj-celery-panel will appear in the same places where your models appear.

NOTE: This application does not actually introduce any model or migrations.

Admin Home

Dashboard Overview

Get a quick overview of your Celery infrastructure including active workers, recent tasks, and queue status.

Dashboard Overview

Workers Monitoring

View all active Celery workers with detailed information about their status, pool type, concurrency, and processing capabilities.

Workers

Task Management

Browse and inspect your Celery tasks with complete details including status, arguments, results, and execution time.

Tasks

Configuration

View your Celery configuration including broker settings, result backend, and other runtime parameters.

Configuration

Installation
pip install dj-celery-panel dj-control-room

Add it to INSTALLED_APPS, include its URLs, and migrate:

INSTALLED_APPS = [
    # ...
    "dj_control_room_base",
    "dj_celery_panel",
    "dj_control_room",
    # ...
]
urlpatterns = [
    path("admin/dj-control-room-base/", include("dj_control_room_base.urls")),
    path("admin/dj-celery-panel/", include("dj_celery_panel.urls")),
    path("admin/dj-control-room/", include("dj_control_room.urls")),
    path("admin/", admin.site.urls),
]

Then visit /admin/ and look for the "DJ CELERY PANEL" section.

Note: The panel requires at least one Celery worker to be running to display worker and queue information.

For the full walkthrough, settings reference (swappable backends, periodic tasks, CSS), and production recommendations, see the Installation and Configuration docs. See Scopes for per-view permission scopes.

License

This project is licensed under the MIT License. See the LICENSE file for details.


Development Setup

Want to contribute or set up the project for local development? See docs/development.md for prerequisites, Docker/virtualenv setup, running the example project, and the test suite.

Схожие новости

#Наименование новостиТональностьИнформативностьДата публикации
1dj-signals-panel: View Django Signals in the Admin024.2920-04-2026
2django-tasks-db - An ORM-based backend for Django Tasks03521-02-2026
3dj-urls-panel014.9322-02-2026
4django-nanopages - Django pages from Markdown026.6725-01-2026
5django-query-doctor: Diagnose Slow Django Queries03002-08-2026
6django-arch-check: Static Checker for Common Django Issues024.2901-06-2026
7dj-control-room - The control room for your Django app021.1102-03-2026
8django-nis2-shield: NIS2 Compliance Middleware06030-01-2026
9django-orm-lens: Django Schema Review03510-08-2026
10django-live-translations - In-browser translation editing for Django superusers03529-03-2026

Классификация: . Схожих патентов: 0. Схожих новостей: 10. Тональность: 0. Информативность: 24.29. Источник: pythondigest.ru.