Django Stopwatch
api metrics collector middleware for django
This package provides a django middleware to collect API metrics.
Installation
$ pip install django-stopwatch
Usage
MIDDLEWARE_CLASSES += (
'stopwatch.middleware.StopWatchMiddleware',
)
Configuration and Default
STOPWATCH_KEYBUILDER = 'stopwatch.keybuilders.RestApiKeyBuilder'
STOPWATCH_BACKENDS = (
'stopwatch.backends.StatsDStopWatchBackend',
)
STOPWATCH_STATSD_PREFIX = stopwatch
STOPWATCH_STATSD_HOST = None
STOPWATCH_STATSD_PORT = None
License
This software is licensed under the Apache License 2.0. See the LICENSE
file in the top distribution directory for the full license text.