========
Overview
========
Redis monitoring and inspection drop-in application using django admin.
* Free software: BSD 2-Clause License
Features
========
* Sever statistics in the admin changelist
* Key summary in the inspect view
* Value introspection with pagination for lists and sorted sets
Don't have a django project?
============================
If you just want to run redisboard quickly do this::
pip install django-redisboard
redisboard
Don't want to run on 0.0.0.0:8000? Run::
redisboard ip:port
Want a password that ain't random (you might need to ``rm -rf ~/.redisboard`` first tho)? Run::
redisboard --password=foobar
Installation guide
==================
Install from pypi, with pip::
pip install django-redisboard
Add ``redisboard`` to ``INSTALLED_APPS``:
::
INSTALLED_APPS += ("redisboard", )
After that you need to run::
manage.py migrate
Then you can add redis servers in the admin. You will see the stats in the changelist.
Redisboard has few css tweaks for the pages (they are optional). If you use staticfiles just run::
manage.py collectstatic
If you do not use django.contrib.staticfiles you must manually symlink the
site-packages/redisboard/static/redisboard dir to <your media root>/redisboard.
Optional Django settings
========================
======================================= ====
Setting name Description
======================================= ====
``REDISBOARD_CONNECTION_POOL_OPTIONS`` Extra connection options. Default: ``{}``. Example:
.. sourcecode:: python
REDISBOARD_CONNECTION_POOL_OPTIONS = {'socket_timeout': 60, 'socket_connect_timeout': 10}
``REDISBOARD_DECODER_CLASS`` Default: ``'redisboard.data.UTF8BackslashReplaceDecoder'``.
``REDISBOARD_DISPLAY_CLASS`` Default: ``'redisboard.data.TabularDisplay'``.
``REDISBOARD_VALUE_QUERY_CLASS`` Default: ``'redisboard.data.ValueQuery'``.
``REDISBOARD_LENGTH_QUERY_CLASS`` Default: ``'redisboard.data.LengthQuery'``.
``REDISBOARD_DETAIL_FILTERS`` A list of regular expressions to match against the keys in the server
details colum. Eg, to only show uptime and list of active databases:
.. sourcecode:: python
REDISBOARD_DETAIL_FILTERS = ['uptime.*', 'db.*']
To show all the details just use:
.. sourcecode:: python
REDISBOARD_DETAIL_FILTERS = ['.*']
``REDISBOARD_DETAIL_CONVERTERS`` Mapping of regexes to functions to convert those values. Checkout the sourcecode for what's
available.
``REDISBOARD_SLOWLOG_NUM`` Number of slowlog entries to show. Default: ``10``.
``REDISBOARD_SCAN_COUNT`` Count used for the various scan commands. Affects pagination for key list and key details.
Default: ``1000``.
``REDISBOARD_STRING_PAGINATION`` Count used just for paginating string values. Default: ``10000``
======================================= ====
Screenshots
===========
Screenshot of the changelist:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/changelist.png
:alt: Screenshot of the changelist
Screenshot of inspecting:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect.png
:alt: Screenshot of inspecting
Screenshot of inspecting a sorted set:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-sorted-set.jpg
:alt: Screenshot of inspecting a sorted set
Screenshot of inspecting a db:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-db.jpg
:alt: Screenshot of inspecting a db
Screenshot of inspecting a big string:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-big-string.jpg
:alt: Screenshot of inspecting a big string
Screenshot of inspecting a hash:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-hash.jpg
:alt: Screenshot of inspecting a hash
Screenshot of inspecting a hash with binary values:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-binary-hash.jpg
:alt: Screenshot of inspecting a hash with binary values
Screenshot of inspecting a binary string:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-binary-string.jpg
:alt: Screenshot of inspecting a binary string
Screenshot of inspecting a binary key:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-binary-key.jpg
:alt: Screenshot of inspecting a binary key
Screenshot of inspecting a set:
.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-set.jpg
:alt: Screenshot of inspecting a set
Documentation
=============
https://django-redisboard.readthedocs.org/en/latest/
Development
===========
To run the all tests run::
tox
Changelog
=========
9.0.0 (2025-07-22)
------------------
* Dropped support for Django 4.1 or older.
* Dropped support for Python 3.8 or older.
* Updated CI to run with Python 3.9 - 3.11 and Django 4.2/5.2.
* Modernized some packaging (metadata in pyproject.toml etc).
* Fixed bug with INFO response processing there there are keys prefixed with "db" but do not have db number.
8.4.0 (2022-11-16)
------------------
* Added more details in the changelist table (in addition to what is configured in ``REDISBOARD_DETAIL_FILTERS``).
* Made some of the details in the changelist table more compact.
8.3.1 (2022-10-10)
------------------
* Add missing dependency on ``attrs``.
8.3.0 (2022-05-20)
------------------
* Added a bunch of links to Change/Inspect/Details in various pages and cleaned up code some more.
* Improved simplified/styling a bit.
8.2.2 (2022-05-19)
------------------
* Fix broken missing key check for databases different than the default one (usually 0) and render a full page instead of a text/plain 404.
8.2.1 (2022-05-18)
------------------
* Fixed issue with key stats being empty for databases different than the default one (usually 0). Turns out pipelines open up a new
connection and need a select call.
8.2.0 (2022-05-17)
------------------
* Added a full details page.
* Added some headings in inspect pages.
* Fixed model name in breadcrumbs.
* Fixed empty media in inspect pages.
* Fixed inspect page giving 500 error for unavailable servers.
8.1.0 (2022-05-16)
------------------
* Added ``--version`` CLI option.
* Changed redisboard CLI admin header to show version and also fixed incorrect context that prevented AdminSite customizations overriding
said header. Probably view site link also fixed.
8.0.1 (2022-05-15)
------------------
* Fixed incorrect settings loading of ``REDISBOARD_DETAIL_CONVERTERS``.
8.0.0 (2022-05-15)
------------------
* Dropped support for Python 3.6.
* Overhauled internals to support customization of redis queries, deserialization and display using custom classes.
For that purpose there are new settings: ``REDISBOARD_DECODER_CLASS``, ``REDISBOARD_DISPLAY_CLASS``, ``REDISBOARD_VALUE_QUERY_CLASS`` and
``REDISBOARD_LENGTH_QUERY_CLASS``.
* Fixed various issues with pagination by simplifying it and making the use of cursors transparent to the user.
For this purpose the ``sampling_size`` and ``sampling_threshold`` models fields have been removed, and the ``REDISBOARD_ITEMS_PER_PAGE``
was removed and replaced with ``REDISBOARD_SCAN_COUNT`` and ``REDISBOARD_STRING_PAGINATION``.
* Added new setting ``REDISBOARD_DETAIL_CONVERTERS`` for customizing display of server details somewhat.
* Added new setting ``REDISBOARD_SLOWLOG_NUM`` option for limiting the slowlow displayed.
* The default value for the ``REDISBOARD_DETAIL_FILTERS`` setting was changed.
* Better connection management was implemented, both via render callbacks and ``__del__`` (as a fallback).
There shouldn't be any connection leaks anymore. If the DEBUG setting is True then warnings
will be issued should any connection be closed via ``__del__``.
* Added the ``--debug`` (to enable DEBUG and autoreload) and ``--decoder`` (to load a different data decoder) in the ``redisboard`` CLI.
7.0.1 (2022-05-12)
------------------
* Fixed ``--password`` killing the django session (it won't change the password and invalidate session if it's identical).
* Fixed some alignment regressions in the table cells.
7.0.0 (2022-05-12)
------------------
* Removed some of the more expensive and frankly pointless stats computations.
* Fixed internal error that occurred for empty databases.
* Cleaned up more code (hopefully all the Python 2 is all gone now).
* Changed the inspect page to include all the stats from the changelist.
* Changed the stats display to use tables instead of definition lists.
* Changed the ``--password`` CLI option to update the password regardless if the local sqlite was created or not.
6.0.0 (2022-04-12)
------------------
* Replaced the hostname/port fields with an url field.
This allow SSL connection and whatever Redis will have in the future.
* Removed more dead code.
5.0.0 (2022-01-27)
------------------
* Drop support for old Python/Django. Minimum requirements are now Python 3.6 and Django 2.2.
* Fixed various issues with newer Django (up to 4.0):
* Fixed various deprecations and broken imports.
* Added a ``default_auto_field`` - fixes Django complaining about missing migrations if you have a custom ``DEFAULT_AUTO_FIELD``
in settings.
4.1.1 (2020-07-28)
------------------
* Improved exception handling for errors coming from redis. Now timeouts show the server as "DOWN" and other errors
don't result in a 500 page.
4.1.0 (2020-07-23)
------------------
* Fixed a KeyError that could occur on fast changing databases.
Contributed by Rand01ph in `#39 <https://github.com/ionelmc/django-redisboard/pull/39>`_.
* Added a port filter.
Contributed by Rick van Hattem in `#41 <https://github.com/ionelmc/django-redisboard/pull/41>`_.
* Added support for Django 3.
Contributed by Alireza Amouzadeh in `#43 <https://github.com/ionelmc/django-redisboard/pull/43>`_.
* Fixed issues that could occur when running the ``redisboard`` CLI with newer Django
(migrations will run now).
* Fixed ugettext deprecation.
* Added a ``favicon.ico`` and handler in the ``redisboard`` CLI.
4.0.0 (2018-11-01)
------------------
* Fixed typo in inspect.html template to reflect `out`.
* Added Django 2.0 support. Contributed by Erik Telepovský
in `#33 <https://github.com/ionelmc/django-redisboard/pull/33>`_.
* Converted the ``run_redisboard.py`` script to a ``redisboard`` bin and fixed Django 2.x issues.
* Dropped support for Django older than 1.11.
* Dropped support for Python older than 3.4 or 2.7.
* Fixed issues with data being displayed as binary strings.
* Fixed unwanted tag escaping. Contributed by Gilles Lavaux
in `#37 <https://github.com/ionelmc/django-redisboard/pull/37>`_.
3.0.2 (2017-01-19)
------------------
* Fixed UnicodeDecodeError in "redisboard/admin.py" (fixes
issue `#15 <https://github.com/ionelmc/django-redisboard/issues/15>`_).
Contributed by Erik Telepovský in `#29 <https://github.com/ionelmc/django-redisboard/pull/29>`_.
* Fixed TypeError in "redisboard/admin.py". Contributed by gabn88
in `#28 <https://github.com/ionelmc/django-redisboard/pull/28>`_.
3.0.1 (2016-09-12)
------------------
* Add supportfor Django 1.10. Contributed by Vincenzo Demasi
in `#26 <https://github.com/ionelmc/django-redisboard/pull/26>`_.
3.0.0 (2015-12-17)
------------------
* Drop support for Django < 1.8
* Add support for Django 1.9. Contributed by gabn88
in `#25 <https://github.com/ionelmc/django-redisboard/pull/25>`_.
2.0.0 (2015-11-08)
------------------
* Fix error handling in couple places. Now pages don't return 500 errors if there's something bad going on with the
redis connection.
* Remove key stats that came from ``DEBUG OBJECT`` (LRU, Address, Length etc). Now ``OBJECT
[REFCOUNT|ENCODING|IDLETIME]`` is used instead. **BACKWARDS INCOMPATIBLE**
1.2.2 (2015-10-11)
------------------
* Exception handling for AWS ElastiCache Redis or any Redis that does not have DEBUG OBJECT command.
* Enabled Redis keys to be inspected despite not having details from DEBUG OBJECT command.
1.2.1 (2015-06-30)
------------------
* Fixed a bug on Python 3 (no ``xrange``).
* Fixed some issues the ``run_redisboard.py`` bootstrapper had with virtualenv.
1.2.0 (2015-02-21)
------------------
* Add ``REDISBOARD_SOCKET_TIMEOUT``, ``REDISBOARD_SOCKET_CONNECT_TIMEOUT``, ``REDISBOARD_SOCKET_KEEPALIVE`` and
``REDISBOARD_SOCKET_KEEPALIVE_OPTIONS`` options.
1.1.0 (2015-01-21)
------------------
* Fix broken slowlog display.
1.0.0 (2014-12-10)
------------------
* Show slowlog and cpu usage and more memory stats (contributed by Rick van Hattem)
* Use pipelines to send commands for faster response (contributed by Rick van Hattem)
* Added Python 3.3 and 3.4 support.
* Added a test suite and other minor fixes.
0.2.7 (?)
---------
* N/A.
Raw data
{
"_id": null,
"home_page": null,
"name": "django-redisboard",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "django, redis, monitoring, inspector, statistics",
"author": null,
"author_email": "Ionel Cristian M\u0103rie\u0219 <contact@ionelmc.ro>",
"download_url": "https://files.pythonhosted.org/packages/50/6a/c03298f967ccea15b033a051c49cd8fcb28b16efb1e1528b1f7b05e61422/django_redisboard-9.0.0.tar.gz",
"platform": null,
"description": "========\nOverview\n========\n\n\n\nRedis monitoring and inspection drop-in application using django admin.\n\n* Free software: BSD 2-Clause License\n\nFeatures\n========\n\n* Sever statistics in the admin changelist\n* Key summary in the inspect view\n* Value introspection with pagination for lists and sorted sets\n\nDon't have a django project?\n============================\n\nIf you just want to run redisboard quickly do this::\n\n pip install django-redisboard\n redisboard\n\nDon't want to run on 0.0.0.0:8000? Run::\n\n redisboard ip:port\n\nWant a password that ain't random (you might need to ``rm -rf ~/.redisboard`` first tho)? Run::\n\n redisboard --password=foobar\n\nInstallation guide\n==================\n\nInstall from pypi, with pip::\n\n pip install django-redisboard\n\nAdd ``redisboard`` to ``INSTALLED_APPS``:\n\n::\n\n INSTALLED_APPS += (\"redisboard\", )\n\nAfter that you need to run::\n\n manage.py migrate\n\nThen you can add redis servers in the admin. You will see the stats in the changelist.\n\nRedisboard has few css tweaks for the pages (they are optional). If you use staticfiles just run::\n\n manage.py collectstatic\n\nIf you do not use django.contrib.staticfiles you must manually symlink the\nsite-packages/redisboard/static/redisboard dir to <your media root>/redisboard.\n\nOptional Django settings\n========================\n\n======================================= ====\nSetting name Description\n======================================= ====\n``REDISBOARD_CONNECTION_POOL_OPTIONS`` Extra connection options. Default: ``{}``. Example:\n\n .. sourcecode:: python\n\n REDISBOARD_CONNECTION_POOL_OPTIONS = {'socket_timeout': 60, 'socket_connect_timeout': 10}\n\n\n``REDISBOARD_DECODER_CLASS`` Default: ``'redisboard.data.UTF8BackslashReplaceDecoder'``.\n``REDISBOARD_DISPLAY_CLASS`` Default: ``'redisboard.data.TabularDisplay'``.\n``REDISBOARD_VALUE_QUERY_CLASS`` Default: ``'redisboard.data.ValueQuery'``.\n``REDISBOARD_LENGTH_QUERY_CLASS`` Default: ``'redisboard.data.LengthQuery'``.\n``REDISBOARD_DETAIL_FILTERS`` A list of regular expressions to match against the keys in the server\n details colum. Eg, to only show uptime and list of active databases:\n\n .. sourcecode:: python\n\n REDISBOARD_DETAIL_FILTERS = ['uptime.*', 'db.*']\n\n To show all the details just use:\n\n .. sourcecode:: python\n\n REDISBOARD_DETAIL_FILTERS = ['.*']\n``REDISBOARD_DETAIL_CONVERTERS`` Mapping of regexes to functions to convert those values. Checkout the sourcecode for what's\n available.\n``REDISBOARD_SLOWLOG_NUM`` Number of slowlog entries to show. Default: ``10``.\n``REDISBOARD_SCAN_COUNT`` Count used for the various scan commands. Affects pagination for key list and key details.\n Default: ``1000``.\n``REDISBOARD_STRING_PAGINATION`` Count used just for paginating string values. Default: ``10000``\n======================================= ====\n\nScreenshots\n===========\n\nScreenshot of the changelist:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/changelist.png\n :alt: Screenshot of the changelist\n\nScreenshot of inspecting:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect.png\n :alt: Screenshot of inspecting\n\nScreenshot of inspecting a sorted set:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-sorted-set.jpg\n :alt: Screenshot of inspecting a sorted set\n\nScreenshot of inspecting a db:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-db.jpg\n :alt: Screenshot of inspecting a db\n\nScreenshot of inspecting a big string:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-big-string.jpg\n :alt: Screenshot of inspecting a big string\n\nScreenshot of inspecting a hash:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-hash.jpg\n :alt: Screenshot of inspecting a hash\n\nScreenshot of inspecting a hash with binary values:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-binary-hash.jpg\n :alt: Screenshot of inspecting a hash with binary values\n\nScreenshot of inspecting a binary string:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-binary-string.jpg\n :alt: Screenshot of inspecting a binary string\n\nScreenshot of inspecting a binary key:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-binary-key.jpg\n :alt: Screenshot of inspecting a binary key\n\nScreenshot of inspecting a set:\n\n.. image:: https://raw.githubusercontent.com/ionelmc/django-redisboard/master/docs/inspect-set.jpg\n :alt: Screenshot of inspecting a set\n\nDocumentation\n=============\n\nhttps://django-redisboard.readthedocs.org/en/latest/\n\nDevelopment\n===========\n\nTo run the all tests run::\n\n tox\n\n\nChangelog\n=========\n\n9.0.0 (2025-07-22)\n------------------\n\n* Dropped support for Django 4.1 or older.\n* Dropped support for Python 3.8 or older.\n* Updated CI to run with Python 3.9 - 3.11 and Django 4.2/5.2.\n* Modernized some packaging (metadata in pyproject.toml etc).\n* Fixed bug with INFO response processing there there are keys prefixed with \"db\" but do not have db number.\n\n8.4.0 (2022-11-16)\n------------------\n\n* Added more details in the changelist table (in addition to what is configured in ``REDISBOARD_DETAIL_FILTERS``).\n* Made some of the details in the changelist table more compact.\n\n8.3.1 (2022-10-10)\n------------------\n\n* Add missing dependency on ``attrs``.\n\n8.3.0 (2022-05-20)\n------------------\n\n* Added a bunch of links to Change/Inspect/Details in various pages and cleaned up code some more.\n* Improved simplified/styling a bit.\n\n8.2.2 (2022-05-19)\n------------------\n\n* Fix broken missing key check for databases different than the default one (usually 0) and render a full page instead of a text/plain 404.\n\n8.2.1 (2022-05-18)\n------------------\n\n* Fixed issue with key stats being empty for databases different than the default one (usually 0). Turns out pipelines open up a new\n connection and need a select call.\n\n8.2.0 (2022-05-17)\n------------------\n\n* Added a full details page.\n* Added some headings in inspect pages.\n* Fixed model name in breadcrumbs.\n* Fixed empty media in inspect pages.\n* Fixed inspect page giving 500 error for unavailable servers.\n\n8.1.0 (2022-05-16)\n------------------\n\n* Added ``--version`` CLI option.\n* Changed redisboard CLI admin header to show version and also fixed incorrect context that prevented AdminSite customizations overriding\n said header. Probably view site link also fixed.\n\n\n8.0.1 (2022-05-15)\n------------------\n\n* Fixed incorrect settings loading of ``REDISBOARD_DETAIL_CONVERTERS``.\n\n8.0.0 (2022-05-15)\n------------------\n\n* Dropped support for Python 3.6.\n* Overhauled internals to support customization of redis queries, deserialization and display using custom classes.\n For that purpose there are new settings: ``REDISBOARD_DECODER_CLASS``, ``REDISBOARD_DISPLAY_CLASS``, ``REDISBOARD_VALUE_QUERY_CLASS`` and\n ``REDISBOARD_LENGTH_QUERY_CLASS``.\n* Fixed various issues with pagination by simplifying it and making the use of cursors transparent to the user.\n For this purpose the ``sampling_size`` and ``sampling_threshold`` models fields have been removed, and the ``REDISBOARD_ITEMS_PER_PAGE``\n was removed and replaced with ``REDISBOARD_SCAN_COUNT`` and ``REDISBOARD_STRING_PAGINATION``.\n* Added new setting ``REDISBOARD_DETAIL_CONVERTERS`` for customizing display of server details somewhat.\n* Added new setting ``REDISBOARD_SLOWLOG_NUM`` option for limiting the slowlow displayed.\n* The default value for the ``REDISBOARD_DETAIL_FILTERS`` setting was changed.\n* Better connection management was implemented, both via render callbacks and ``__del__`` (as a fallback).\n There shouldn't be any connection leaks anymore. If the DEBUG setting is True then warnings\n will be issued should any connection be closed via ``__del__``.\n* Added the ``--debug`` (to enable DEBUG and autoreload) and ``--decoder`` (to load a different data decoder) in the ``redisboard`` CLI.\n\n7.0.1 (2022-05-12)\n------------------\n\n* Fixed ``--password`` killing the django session (it won't change the password and invalidate session if it's identical).\n* Fixed some alignment regressions in the table cells.\n\n7.0.0 (2022-05-12)\n------------------\n\n* Removed some of the more expensive and frankly pointless stats computations.\n* Fixed internal error that occurred for empty databases.\n* Cleaned up more code (hopefully all the Python 2 is all gone now).\n* Changed the inspect page to include all the stats from the changelist.\n* Changed the stats display to use tables instead of definition lists.\n* Changed the ``--password`` CLI option to update the password regardless if the local sqlite was created or not.\n\n\n6.0.0 (2022-04-12)\n------------------\n\n* Replaced the hostname/port fields with an url field.\n This allow SSL connection and whatever Redis will have in the future.\n* Removed more dead code.\n\n5.0.0 (2022-01-27)\n------------------\n\n* Drop support for old Python/Django. Minimum requirements are now Python 3.6 and Django 2.2.\n* Fixed various issues with newer Django (up to 4.0):\n\n * Fixed various deprecations and broken imports.\n * Added a ``default_auto_field`` - fixes Django complaining about missing migrations if you have a custom ``DEFAULT_AUTO_FIELD``\n in settings.\n\n4.1.1 (2020-07-28)\n------------------\n\n* Improved exception handling for errors coming from redis. Now timeouts show the server as \"DOWN\" and other errors\n don't result in a 500 page.\n\n4.1.0 (2020-07-23)\n------------------\n\n* Fixed a KeyError that could occur on fast changing databases.\n Contributed by Rand01ph in `#39 <https://github.com/ionelmc/django-redisboard/pull/39>`_.\n* Added a port filter.\n Contributed by Rick van Hattem in `#41 <https://github.com/ionelmc/django-redisboard/pull/41>`_.\n* Added support for Django 3.\n Contributed by Alireza Amouzadeh in `#43 <https://github.com/ionelmc/django-redisboard/pull/43>`_.\n* Fixed issues that could occur when running the ``redisboard`` CLI with newer Django\n (migrations will run now).\n* Fixed ugettext deprecation.\n* Added a ``favicon.ico`` and handler in the ``redisboard`` CLI.\n\n4.0.0 (2018-11-01)\n------------------\n\n* Fixed typo in inspect.html template to reflect `out`.\n* Added Django 2.0 support. Contributed by Erik Telepovsk\u00fd\n in `#33 <https://github.com/ionelmc/django-redisboard/pull/33>`_.\n* Converted the ``run_redisboard.py`` script to a ``redisboard`` bin and fixed Django 2.x issues.\n* Dropped support for Django older than 1.11.\n* Dropped support for Python older than 3.4 or 2.7.\n* Fixed issues with data being displayed as binary strings.\n* Fixed unwanted tag escaping. Contributed by Gilles Lavaux\n in `#37 <https://github.com/ionelmc/django-redisboard/pull/37>`_.\n\n3.0.2 (2017-01-19)\n------------------\n\n* Fixed UnicodeDecodeError in \"redisboard/admin.py\" (fixes\n issue `#15 <https://github.com/ionelmc/django-redisboard/issues/15>`_).\n Contributed by Erik Telepovsk\u00fd in `#29 <https://github.com/ionelmc/django-redisboard/pull/29>`_.\n* Fixed TypeError in \"redisboard/admin.py\". Contributed by gabn88\n in `#28 <https://github.com/ionelmc/django-redisboard/pull/28>`_.\n\n3.0.1 (2016-09-12)\n------------------\n\n* Add supportfor Django 1.10. Contributed by Vincenzo Demasi\n in `#26 <https://github.com/ionelmc/django-redisboard/pull/26>`_.\n\n3.0.0 (2015-12-17)\n------------------\n\n* Drop support for Django < 1.8\n* Add support for Django 1.9. Contributed by gabn88\n in `#25 <https://github.com/ionelmc/django-redisboard/pull/25>`_.\n\n2.0.0 (2015-11-08)\n------------------\n\n* Fix error handling in couple places. Now pages don't return 500 errors if there's something bad going on with the\n redis connection.\n* Remove key stats that came from ``DEBUG OBJECT`` (LRU, Address, Length etc). Now ``OBJECT\n [REFCOUNT|ENCODING|IDLETIME]`` is used instead. **BACKWARDS INCOMPATIBLE**\n\n1.2.2 (2015-10-11)\n------------------\n\n* Exception handling for AWS ElastiCache Redis or any Redis that does not have DEBUG OBJECT command.\n* Enabled Redis keys to be inspected despite not having details from DEBUG OBJECT command.\n\n1.2.1 (2015-06-30)\n------------------\n\n* Fixed a bug on Python 3 (no ``xrange``).\n* Fixed some issues the ``run_redisboard.py`` bootstrapper had with virtualenv.\n\n1.2.0 (2015-02-21)\n------------------\n\n* Add ``REDISBOARD_SOCKET_TIMEOUT``, ``REDISBOARD_SOCKET_CONNECT_TIMEOUT``, ``REDISBOARD_SOCKET_KEEPALIVE`` and\n ``REDISBOARD_SOCKET_KEEPALIVE_OPTIONS`` options.\n\n1.1.0 (2015-01-21)\n------------------\n\n* Fix broken slowlog display.\n\n1.0.0 (2014-12-10)\n------------------\n\n* Show slowlog and cpu usage and more memory stats (contributed by Rick van Hattem)\n* Use pipelines to send commands for faster response (contributed by Rick van Hattem)\n* Added Python 3.3 and 3.4 support.\n* Added a test suite and other minor fixes.\n\n0.2.7 (?)\n---------\n\n* N/A.\n",
"bugtrack_url": null,
"license": null,
"summary": "Redis monitoring and inspection drop-in application using django admin.",
"version": "9.0.0",
"project_urls": {
"Changelog": "https://django-redisboard.readthedocs.io/en/latest/changelog.html",
"Documentation": "https://django-redisboard.readthedocs.io/",
"Issue Tracker": "https://github.com/ionelmc/django-redisboard/issues",
"Sources": "https://github.com/ionelmc/django-redisboard"
},
"split_keywords": [
"django",
" redis",
" monitoring",
" inspector",
" statistics"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b5066d7f4904029b3e456375cebaeb49fad7e8a21b978f9799e4f10e1a3450e9",
"md5": "0893ec3caecff51bf3fddff1de94534a",
"sha256": "10ee9ec66a7e897fef991854afaab82ebbfebc700b0b30508de51cefc8aaa546"
},
"downloads": -1,
"filename": "django_redisboard-9.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0893ec3caecff51bf3fddff1de94534a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 56671,
"upload_time": "2025-07-22T04:29:26",
"upload_time_iso_8601": "2025-07-22T04:29:26.322570Z",
"url": "https://files.pythonhosted.org/packages/b5/06/6d7f4904029b3e456375cebaeb49fad7e8a21b978f9799e4f10e1a3450e9/django_redisboard-9.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "506ac03298f967ccea15b033a051c49cd8fcb28b16efb1e1528b1f7b05e61422",
"md5": "be06a587debc588c35eb6a9f12a61c31",
"sha256": "9ad7e9e218485648078b054cdb7deb99c1cc53d9da4dc7f9d4ecd947301549d8"
},
"downloads": -1,
"filename": "django_redisboard-9.0.0.tar.gz",
"has_sig": false,
"md5_digest": "be06a587debc588c35eb6a9f12a61c31",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 785440,
"upload_time": "2025-07-22T04:29:28",
"upload_time_iso_8601": "2025-07-22T04:29:28.362942Z",
"url": "https://files.pythonhosted.org/packages/50/6a/c03298f967ccea15b033a051c49cd8fcb28b16efb1e1528b1f7b05e61422/django_redisboard-9.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-22 04:29:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ionelmc",
"github_project": "django-redisboard",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"tox": true,
"lcname": "django-redisboard"
}