https://github.com/dcramer/nexus-redis
Redis stats in Nexus
https://github.com/dcramer/nexus-redis
Last synced: about 2 months ago
JSON representation
Redis stats in Nexus
- Host: GitHub
- URL: https://github.com/dcramer/nexus-redis
- Owner: dcramer
- License: apache-2.0
- Created: 2011-06-03T22:00:41.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-01-11T08:03:40.000Z (almost 14 years ago)
- Last Synced: 2025-02-06T11:18:57.143Z (11 months ago)
- Language: Python
- Homepage:
- Size: 114 KB
- Stars: 16
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
nexus-redis
-----------
Provides a Redis statistics module in `Nexus `_.
Install
=======
Install using pip, or easy_install::
pip install nexus-redis
Config
======
Add nexus_redis to your ``INSTALLED_APPS``::
INSTALLED_APPS = (
'nexus',
'nexus_redis',
)
Usage
=====
The Redis module is automatically integrated into Nexus and provides statistics for all connections specificed in ``NEXUS_REDIS_CONNECTIONS``.
::
NEXUS_REDIS_CONNECTIONS = [
{'host': '127.0.0.1', 'port': 8930, 'db': 0},
]