streeter / django-statsd-patches

Some patches to be added to django-statsd-mozilla

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Statsd Patches

These patches are designed to be used with django-statsd-mozilla.

Installation

From pypi:

pip install django-statsd-patches

This should install the requirement of django-statsd-mozilla, but if not, you can install that with:

pip install django-statsd-mozilla

Usage

The monkeypatches need to be installed to work. To get them installed, add the following to your settings.py:

STATSD_PATCHES = [
    'django_statsd_patches.patches.template',
    'django_statsd_patches.patches.redis_timing',
]

By default both the template and redis_timing patches sample every call. To add sampling to the calls, define one or both of the following settings in your settings.py:

STATSD_REDIS_SAMPLE_RATE = 0.5
STATSD_TEMPLATE_SAMPLE_RATE = 0.25

Then you'll get sampling of the calls.

Changes

0.0.3:

  • Updated setup.py

0.0.2:

  • Added STATSD_REDIS_SAMPLE_RATE and STATSD_TEMPLATE_SAMPLE_RATE
  • Changed redis statsd keys

0.0.1:

  • First version

License

Uses the MIT license.

About

Some patches to be added to django-statsd-mozilla

License:MIT License


Languages

Language:Python 100.0%