gottwall-storage-redis

Redis storage for GottWall statistics aggregator


License
BSD-3-Clause
Install
pip install gottwall-storage-redis==0.0.1

Documentation

Welcome to gottwall-backend-redis's documentation!

gottwall-storage-redis is a Redis storage for GottWall metrics aggregation platform

https://secure.travis-ci.org/GottWall/gottwall-storage-redis.png

INSTALLATION

To use gottwall-storage-redis use pip or easy_install:

pip install gottwall-storage-redis

or

easy_install gottwall-storage-redis

USAGE

To configure GottWall with gottwall-storage-redis you need specify backend in GottWall config.

STORAGE = "gw_storage_redis.RedisStorage"

STORAGE_SETTINGS = {
    "HOST": "localhost",
        "PORT": 6379,
        "PASSWORD": "",
        "DB": 2
}

CONTRIBUTE

We need you help.

  1. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
  2. Fork the repository on Github to start making your changes to the develop branch (or branch off of it).
  3. Write a test which shows that the bug was fixed or that the feature works as expected.
  4. Send a pull request and bug the maintainer until it gets merged and published.