A Django Admin interface for Redis servers with optional Redis Sentinel support
Project description
Introduction
With django-redis-admin you can view (and in the future, edit) your Redis databases. It supports simple servers, master slave setups and sentinel setups.
The admin works by creating a RedisQueryset which fakes Django models and querysets so the ModelAdmin thinks it’s using a regular database backed model.
Since Redis only supports basic types the library allows for optional base64 encoding/decoding and json encoding/decoding.
While I would not recommend using it as a regular queryset to access Redis. In addition to querying data it does some extra queries which you usually don’t need (such as fetching idle data) and it does some automatic conversion steps.
Requirements
Python 3.6 and above
Django (tested with 2.1, probably works with any version that supports Python 3)
Python-redis (pip install redis)
Installation
django-redis-admin can be installed via pip.
pip install django-redis-admin
Then just add redis_admin to your INSTALLED_APPS.
Optionally, configure your servers if you have multiple and/or non-standard (i.e. non-localhost) redis servers.
Below are several example configurations. The default settings can always be found in redis_admin/settings.py
You can run the demo project using the following commands:
cd test_redis_admin
python manage.py runserver
The default username/password is admin/admin: http://localhost:8080/admin/
Basic configuration
# https://redis-py.readthedocs.io/en/latest/index.html#redis.Redis
REDIS_SERVERS = dict(
localhost=dict(),
)
Explicit configuration
# https://redis-py.readthedocs.io/en/latest/index.html#redis.Redis
REDIS_SERVERS = dict(
redis_server_a=dict(host='127.0.0.1', port=6379, db=0),
)
Master slave configuration
# https://redis-py.readthedocs.io/en/latest/index.html#redis.Redis
REDIS_SERVERS = dict(
redis_server_a=dict(
master=dict(host='master_hostname', port=6379, db=0),
slave=dict(host='slave_hostname', port=6379, db=0),
)
)
Sentinel Configuration
# The `REDIS_SENTINELS` setting should be a list containing host/port
# combinations. As documented here:
# https://github.com/andymccurdy/redis-py/blob/master/README.rst#sentinel-support
REDIS_SENTINELS = [('server_a', 26379), ('server_b', 26379)]
# The `REDIS_SENTINEL_OPTIONS` are the extra arguments to
# `redis.sentinel.Sentinel`:
# https://github.com/andymccurdy/redis-py/blob/cdfe2befbe00db4a3c48c9ddd6d64dea15f6f0db/redis/sentinel.py#L128-L155
REDIS_SENTINEL_OPTIONS = dict(socket_timeout=0.1)
# The `service_name` is used to find the server within the Sentinel
# configuration. The dictionary key will be used as the name in the admin
# https://redis-py.readthedocs.io/en/latest/index.html#redis.Redis
REDIS_SERVERS = dict(
name_in_admin=dict(service_name='name_in_sentinel'),
other_server=dict(service_name='other_server'),
)
Base64 and/or JSON decoding
As a convenient option all values can optionally be base64 and/or json encoded. To configure this a regular expression can be specified which will be matched against the keys.
# For all keys
REDIS_JSON_KEY_RE = '.*'
REDIS_BASE64_KEY_RE = '.*'
# Keys starting with a pattern:
REDIS_BASE64_KEY_RE = '^some_prefix.*'
# Keys ending with a pattern:
REDIS_JSON_KEY_RE = '.*some_suffix$'
And if a specific json decoder is needed, the json module can be specified. The module needs to be importable and have a dumps and loads method. By default it simply imports the json module:
REDIS_JSON_MODULE = 'json'
Representation cropping
Within the Django Admin list view the values are cropped by default to prevent really long lines. This size can be adjusted through:
REDIS_REPR_CROP_SIZE = 150
TODO
Allow saving values
Allow deleting values
Support Redis Bitmaps
Support Redis HyperLogLogs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-redis-admin-0.2.0.tar.gz
.
File metadata
- Download URL: django-redis-admin-0.2.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b7834367b48ef26032c938722e7d82037b9cab9ba5ead375a921edd9a2f2b9f |
|
MD5 | bd89723771d8e8d7452498b1f8779160 |
|
BLAKE2b-256 | 78fb1c32d636f8cf81038f1c3cd9a94f03a81a8134e7718c4998d06304a272b3 |
File details
Details for the file django_redis_admin-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: django_redis_admin-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8acfec063bca7a5b13bf857a28d1cad348b03092a52e2829a83058948f96cd71 |
|
MD5 | 8ddefa04502db8d090ecebf353dba641 |
|
BLAKE2b-256 | e9c68b4e6c5f26d7def95618b5c59496e6ca958647f0d03277912d7413b048d6 |