docs | |
---|---|
tests | |
package |
Redis monitoring and inspection drop-in application using django admin.
- Free software: BSD 2-Clause License
- Sever statistics in the admin changelist
- Key summary in the inspect view
- Value introspection with pagination for lists and sorted sets
OS: | Any |
---|---|
Runtime: | Python 2.7, 3.4, 3.4 or PyPy |
Services: | Redis 2.2 or later. |
Packages: | Django>=1.8, py-redis>=2.10.0 |
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
Install from pypi, with pip:
pip install django-redisboard
Or with setuptools:
easy_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.
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:
REDISBOARD_DETAIL_FILTERS = ['uptime.*', 'db.*']
To show all the details just use:
REDISBOARD_DETAIL_FILTERS = ['.*']
REDISBOARD_ITEMS_PER_PAGE - default 100. Used for paginating the items from a list or a sorted set.
REDISBOARD_SOCKET_TIMEOUT - default None. Socket operations time out after this many seconds.
REDISBOARD_SOCKET_CONNECT_TIMEOUT - default None. Socket connect operation times out after this many seconds.
REDISBOARD_SOCKET_KEEPALIVE - default None. Enables or Disables socket keepalive.
REDISBOARD_SOCKET_KEEPALIVE_OPTIONS - default None. Additional options for socket keepalive.
Changelist:
Inspect:
Inspect key details:
https://django-redisboard.readthedocs.org/en/latest/
To run the all tests run:
tox