Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.41 KB

README.md

File metadata and controls

65 lines (44 loc) · 1.41 KB

Django DataDog Integration

A simple DataDog Integration for Django. This app lets you set your integration settings in and just call the compatibility wrapper functions. All authentication is handled on your behalf.

Quickstart

To get started, setup your DataDog Agent, then configure this app:

pip install django-datadog

Configure your settings.py with DataDog and StatsD:

DATADOG = {
  'ENABLED': True,
  'API_KEY': 'xxxx',
  'APP_KEY': 'xxxx',
}

STATSD_HOST = 'localhost'
STATSD_PORT = '12345'

You're now able to call DataDog functions:

from django_datadog.compat import create_event, create_gauge

create_event('example.com.my_event',
             fmt_text='Sample event %s',
             priority='normal',
             text_args=(request.user.email, ),
             tags=['app:example'])

create_gauge('example.com.my_gauge', value=25)

create_increment('example.com.my_counter', tags=['my:tags'])

And that's it!

Contributing

We don't currently cover all of DataDog's functionality. If you'd like to contribute, please open a Pull Request with the new function and a test case.

Add the function to django_datadog/compat.py

Initializing

To setup your function, you usually want to initialize DataDog:

from datadog import some_function

from django_datadog.utils import init_datadog

def my_custom_function():
    if init_datadog():
        some_function()