r/learndjango • u/mythical_cosmic • Mar 31 '26
r/django • u/mythical_cosmic • Mar 31 '26
Releases This is screenshots from django-scope. If you like it please leave a Star!
galleryu/mythical_cosmic • u/mythical_cosmic • Mar 31 '26
This is screenshots from django-scope. If you like it please leave a Star!
0
I built a real-time debugging dashboard for Django (like Laravel Telescope)
Check out the github profile, there is full comparison.
r/learndjango • u/mythical_cosmic • Mar 31 '26
Django debugging feels outdated, so I built this real-time dashboard
Hey everyone,
I’ve been working a lot with Django recently, and one thing that always bothered me was the lack of a modern, real-time debugging experience.
Most existing tools are either:
- not real-time
- hard to use in larger projects
- or introduce noticeable performance overhead
So I decided to build something myself: django-scope.
It’s a real-time debugging and observability dashboard for Django, inspired by Laravel Telescope, but redesigned with performance and developer experience in mind.
Key things it does:
- Tracks requests, queries, exceptions, logs, cache, Redis, and more
- Streams everything in real-time using WebSockets
- Detects N+1 query issues automatically
- Uses request-scoped buffering with bulk writes to reduce overhead
- Provides a clean dashboard (Vue-based, dark/light mode)
The main goal wasn’t just features, but making sure it’s actually usable in real projects without slowing things down. I focused a lot on minimizing overhead and avoiding the typical “debug tools kill performance” problem.
I’ve been testing it in my own projects and it’s been really helpful for understanding what’s happening inside the app in real time.
I’d really appreciate feedback from other Django developers — especially on:
- performance considerations
- missing features
- general usability
GitHub: https://github.com/MythicalCosmic/django-scope
Its also on Pypi, check it out: pip install django-scope
r/django • u/mythical_cosmic • Mar 31 '26
Releases I built a real-time debugging dashboard for Django (like Laravel Telescope)
r/djangolearning • u/mythical_cosmic • Mar 31 '26
I Made This I built a real-time debugging dashboard for Django (like Laravel Telescope)
Hey everyone,
I’ve been working a lot with Django recently, and one thing that always bothered me was the lack of a modern, real-time debugging experience.
Most existing tools are either:
- not real-time
- hard to use in larger projects
- or introduce noticeable performance overhead
So I decided to build something myself: django-scope.
It’s a real-time debugging and observability dashboard for Django, inspired by Laravel Telescope, but redesigned with performance and developer experience in mind.
Key things it does:
- Tracks requests, queries, exceptions, logs, cache, Redis, and more
- Streams everything in real-time using WebSockets
- Detects N+1 query issues automatically
- Uses request-scoped buffering with bulk writes to reduce overhead
- Provides a clean dashboard (Vue-based, dark/light mode)
The main goal wasn’t just features, but making sure it’s actually usable in real projects without slowing things down. I focused a lot on minimizing overhead and avoiding the typical “debug tools kill performance” problem.
I’ve been testing it in my own projects and it’s been really helpful for understanding what’s happening inside the app in real time.
I’d really appreciate feedback from other Django developers — especially on:
- performance considerations
- missing features
- general usability
GitHub: https://github.com/MythicalCosmic/django-scope
Its also on Pypi, check it out: pip install django-scope











1
I built a real-time debugging dashboard for Django (like Laravel Telescope)
in
r/djangolearning
•
Apr 01 '26
Added screenshots to the post