Skip to main content

Python empty package

Project description

django_redis_dashboard application for monitoring redis servers which used by application.

Usage

INSTALLATION

  1. To use django_redis_dashboard use pip or easy_install:

pip install django_redis_dashboard

or

easy_install django_redis_dashboard

  1. Add redis_dashboard to your INSTALLED_APPS setting:

    INSTALLED_APPS = (
        # ...
        'redis_dashboard',
    )
  2. Add the urls to your url configuration:

    urlpatterns = patterns('',
        # ...
        (r'^redis-dashboard/', include('redis-dashboard.urls')),
    )
  3. Configure you redis servers:

    REDIS = {
         'default': {
                    'HOST': '127.0.0.1',
                'PORT': 6379,
                'DB': 2
                 },
         'slave': {
                        'HOST': '127.0.0.1',
                'PORT': 6378,
                                'DB': 3
         }
    }

CONTRIBUTE

Fork https://github.com/Lispython/django-redis-dashboard/ , create commit and pull request.

SEE ALSO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

redis_dashboard-0.0.3.tar.gz (5.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page