Skip to content

A simple Django middleware for submitting timings and exceptions to Datadog.

License

Notifications You must be signed in to change notification settings

irvined1982/django-datadog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Datadog

A simple Django middleware for submitting timings and exceptions to Datadog.

Installation

Download the code into your project and install it.

git clone git://github.com/conorbranagan/django-datadog.git
cd django-datadog
python setup.py install

Add datadog to your list of installed apps.

INSTALLED_APPS += ('django-datadog')

Add the following configuration to your projects' settings.py file:

DATADOG_API_KEY = 'YOUR_API_KEY'
DATADOG_APP_KEY = 'YOUR_APP_KEY'
DATADOG_APP_NAME = 'my_app' # Used to namespace metric names

The API and app keys can be found at https://app.datadoghq.com/account/settings#api

Add the Datadog request handler to your middleware in settings.py.

MIDDLEWARE_CLASSES += ('django-datadog.middleware.DatadogMiddleware')

Usage

Once the middlewhere installed, you'll start receiving events in your Datadog stream in the case of an app exception. Here's an example:

example django exception

You will also have new timing metrics available:

  • my_app.request_time.{avg,max,min}
  • my_app.errors

Metrics are tagged with path:/path/to/view

Note: my_app will be replaced by whatever value you give for DATADOG_APP_NAME.

About

A simple Django middleware for submitting timings and exceptions to Datadog.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%