Get full visibility into your Django project's signals. See which signals are registered, which receivers are connected, and what that receiver code actually does.
pip install dj-signals-panelSignals
12
Receivers
23
Built-in
6
Custom
6
| Signal | Sender | Receiver | Module |
|---|---|---|---|
| post_save | auth.User | profiles.create_profile | profiles.signals |
| post_save | orders.Order | notifications.send_order_email | notifications.signals |
| pre_delete | catalog.Product | catalog.clear_product_cache | catalog.signals |
| post_save | payments.Payment | ledger.record_transaction | ledger.signals |
| request_finished | None | analytics.flush_buffer | analytics.signals |
| user_logged_in | auth.User | audit.log_login | audit.signals |
Features
No external dashboards. No extra infrastructure. Just your Django admin, supercharged.
See every signal registered in your project, including built in Django signals and your custom ones.
Quickly find signals by name, sender, or receiver. Filter by signal type or connected app.
View which receivers are connected to each signal, with full module paths and source details.
Inspect receiver code directly from the admin. Understand what each handler does without switching to your editor.
No extra tools or monitoring infrastructure. Everything lives inside your Django admin.
Leverages Django's built in auth and permissions system. Control who sees what with standard admin access.
Installation
pip install dj-signals-panelINSTALLED_APPS = [
# ...
"dj_control_room_base",
"dj_signals_panel",
]urlpatterns = [
# ...
path("admin/dj-control-room-base/", include("dj_control_room_base.urls")),
path("admin/dj-signals-panel/", include("dj_signals_panel.urls")),
path("admin/", admin.site.urls),
]Restart your Django server and navigate to the Control Room in your admin. The Signals panel will appear automatically.
Part of the suite
dj-signals-panel is one of several admin-native panels. Explore Redis monitoring, cache inspection, Celery task queues, and more.
New panels, project updates, and Django content straight to your inbox.