django-perf

A simple Django Middleware for sending request data to Perf.


License
GPL-3.0
Install
pip install django-perf==0.2.0

Documentation

PyPI version circle.ci builds

Perf Django Agent

perf is a middleware that will record timing and status codes of the connections in the Django framework and send the data to Perf. We then run analytics on that data to generate metrics and alerts.

Installation

  • Easily install Perf via pip

    pip install django-perf
  • Add Perf configuration to your settings

    PERF_CONFIG = {
        "api_key": "PERF_API_KEY"
    }
  • Add Perf to your list of installed apps and middleware classes

    INSTALLED_APPS = (
      'perf',
      ...
    )
    
    MIDDLEWARE_CLASSES = (
      'perf.middleware.PerfMiddleware',
      'django.middleware.common.CommonMiddleware',
      'django.middleware.csrf.CsrfViewMiddleware',
      ...
    )