A Django Admin panel for browsing, inspecting, and managing Redis keys. No postgres/mysql models or changes required.
Compatible with dj-control-room. Register this panel in the Control Room to manage it from a centralized dashboard.
- Official site: djangocontrolroom.com
- Project repo: dj-control-room
https://django-control-room.github.io/dj-redis-panel/
- Browse Redis Keys: Search and filter Redis keys with pattern matching
- Instance Overview: Monitor Redis instance metrics and database statistics
- Key Management: View, edit, and delete Redis keys with support for all data types (String, List, Set, Hash, Sorted Set), including binary data
- Feature Toggles: Granular control over operations (delete, edit, TTL updates)
- Pagination: Both traditional page-based and cursor-based pagination support
- Django Admin Integration: Seamless integration with Django admin styling and dark mode
- Permission Control: Respects Django admin permissions and staff-only access
- Multiple Instances: Support for multiple Redis instances with different configurations
- Python 3.9+
- Django 4.2+
- Redis 4.0+
- redis-py 4.0+
Seamlessly integrated into your Django admin interface. A new section for dj-redis-panel will appear in the same places where your models appear.
NOTE: This application does not actually introduce any model or migrations.
Monitor your Redis instances with detailed metrics and database information.
Search for keys with traditional page-based navigation.
Efficient cursor-based pagination for large datasets.
View and edit string key values with TTL management.
Browse keys with more complex data structures such as hashes, lists, etc.
pip install dj-redis-panel dj-control-roomAdd it to INSTALLED_APPS, include its URLs, and migrate:
INSTALLED_APPS = [
# ...
'dj_control_room_base',
'dj_redis_panel',
'dj_control_room',
# ...
]urlpatterns = [
path('admin/dj-control-room-base/', include('dj_control_room_base.urls')),
path('admin/dj-redis-panel/', include('dj_redis_panel.urls')),
path('admin/dj-control-room/', include('dj_control_room.urls')),
path('admin/', admin.site.urls),
]You'll also need at least one Redis instance configured under DJ_REDIS_PANEL_SETTINGS["INSTANCES"] - see Configuration for the full settings reference (feature flags, pagination, cluster/SSL connections).
python manage.py migrateThen visit /admin/ and look for the "DJ REDIS PANEL" section.
For the full walkthrough and production recommendations, see the Installation and Configuration docs. See Scopes for per-view permission scopes.
This project is licensed under the MIT License. See the LICENSE file for details.
Want to contribute or set up the project for local development? See Contributing for prerequisites, Docker/virtualenv setup, running the example project, and the test suite.






