Auklet performance monitoring agent for Django apps
Project description
Auklet for Django
This is the official Django agent for Auklet. It officially supports Django 1.7+, and runs on most POSIX-based operating systems (Debian, Ubuntu Core, Raspbian, QNX, etc).
Features
- Automatic report of unhandled exceptions
- Location, system architecture, and system metrics identification for all issues
Quickstart
To install the agent with pip:
pip install django-auklet
To setup Auklet monitoring for you application simply include it in your INSTALLED_APPS
:
INSTALLED_APPS = (
'auklet',
...,
)
Then go and create an application at https://app.auklet.io/ to get your config settings:
AUKLET_CONFIG = {
"api_key": "<API_KEY>",
"application": "<APPLICATION>",
"organization": "<ORGANIZATION>"
}
Authorization
To authorize your application you need to provide both an API key and app ID. These values are available in the connection settings of your application as well as during initial setup.
Optional: Release Tracking
You can track releases and identify which servers are running what variant of code. To do this, you may provide the git commit hash of your deployed code and a version string you can modify. This release value should be passed into the settings variable through the release key, and your custom version should be passed via the version key. The release value must be the git commit hash that represents the deployed version of your application. The version value is a string that you may set to whatever value you wish to define your versions. Please note that you can provide either a release value, version value, or both.
- Providing release enables code snippets to be shown for identified errors if you’ve linked your GitHub.
- Including version allows you to track what version of code had the issue.
curl -X POST https://api.auklet.io/v1/releases/ \
-H "Content-Type: application/json" \
-H "Authorization: JWT <API_KEY>" \
-d '{"application": "<APP_ID>", "release": "'$(git rev-parse HEAD)'", "version": "<YOUR_DEFINED_VERSION>"}'
You can get a pre constructed curl request from the setup directions at [Auklet][https://app.auklet.io/]
AUKLET_CONFIG = {
"api_key": "<API_KEY>",
"application": "<APPLICATION>",
"organization": "<ORGANIZATION>",
"release": "<GIT_COMMIT_HASH>",
"version": "1.2.3"
}
Middleware Error Handling
To set up default Django middleware error handling, add the Auklet middleware to the end of your middleware configs:
MIDDLEWARE = (
...,
"auklet.middleware.AukletMiddleware",
)
If you are already using an error handling middleware which returns a response, you need to disable it or do the following before you return a response; this ensures that the signal is sent to the Auklet middleware.
got_request_exception.send(sender=self, request=request)
If you wish to set up Auklet using a WSGI middleware instead of the default Django middleware, you can do so as shown below. Please note that you should only use WSGI or Django middleware, not both.
import os
from django.core.wsgi import get_wsgi_application
from django.conf import settings
from auklet.middleware import WSGIAukletMiddleware
application = get_wsgi_application()
application = WSGIAukletMiddleware(application)
Resources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-auklet-0.2.1.tar.gz
.
File metadata
- Download URL: django-auklet-0.2.1.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af9bb742bad430a7f9aea70be63f34c1ebf272bcf5a4f0c5c9f88c399b4baea6 |
|
MD5 | bf3f2fbba27e3b095a729895e4c90caf |
|
BLAKE2b-256 | 89e3ee3b4067cc5659256dd845cb69a264718c0d26a474012532d77f39a6e445 |
File details
Details for the file django_auklet-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_auklet-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2256bb97dce16d3857c9dcd57d3bc2608e3f391348da62cbf2710deb86a4c9b8 |
|
MD5 | b674018d0c32c5373e60dcc2f17a8776 |
|
BLAKE2b-256 | 05ddd1733697d1c8de6b612f48659591d33bc7cc7d08a9dcf8a8ca6b28495dff |