Healtchecks for Django
Project description
django-alive 🕺
Provides two healthcheck endpoints for your Django application:
Alive
Verifies the WSGI server is responding.
- Default URL:
/-/alive/
- Success:
- status code:
200
- content:
ok
- status code:
- Failure: This view never returns a failure. A failure would mean your WSGI server is not running.
Health
Verifies services are ready.
- Default URL:
/-/health/
- Success:
- status_code:
200
- content:
{"healthy": true}
- status_code:
- Failure:
- status_code:
503
- content:
{"healthy": false, "errors": ["error 1", "error 2"]}
- status_code:
By default the health endpoint will test the database connection, but can be configured to check the cache, staticfiles, or any additional custom checks.
Supports Django 1.10+ on both Python 2 & 3.
Install
pip install django-alive
Configure
Add this to your project's urlpatterns
:
path("-/", include("django_alive.urls"))
For versions before Django 2.0, use:
url(r"-/", include("django_alive.urls"))
Enabling Checks
The default "health" endpoint will test a simple SELECT 1
query on the database. Additional checks can be enabled in your Django settings.
Use the ALIVE_CHECKS
setting to configure the checks to include. It is a dictionary with the path to a Python function as a key and any keyword arguments to pass to that function as a value. A full example:
ALIVE_CHECKS = {
"django_alive.checks.check_database": {},
"django_alive.checks.check_staticfiles": {
"filename": "img/favicon.ico",
},
"django_alive.checks.check_cache": {
"cache": "session",
"key": "test123",
},
}
Custom Checks
django-alive
is designed to easily extend with your own custom checks. Simply define a function which performs your check and raises a django_alive.HealthcheckFailure
exception in the event of a failure. See checks.py
for some examples on how to write a check.
Bypassing the ALLOWED_HOSTS
Check
Often, load balancers will not pass a Host
header when probing a healthcheck endpoint. This presents a problem for Django's host header validation. A middleware is included that will turn off the host checking only for the healthcheck endpoints. This is safe since these views never do anything with the Host
header.
Enable the middleware by inserting this at the beginning of your MIDDLEWARES
:
MIDDLEWARES = [
"django_alive.middleware.healthcheck_bypass_host_check",
# ...
]
1.0.0 (2018-08-21)
- Initial release
Project details
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-alive-1.0.0.tar.gz
.
File metadata
- Download URL: django-alive-1.0.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72d9e12e62add240b440bc366b1b7eb871d8a3637817de8e7bbdc27db9751992 |
|
MD5 | 61c71e93653699c13bd43edb09a77d51 |
|
BLAKE2b-256 | 62258fba65bedd2600141b9dcec94fc53e81425f5b787d03ce11474e35f5f584 |
Provenance
File details
Details for the file django_alive-1.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_alive-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f281b7e9ff93598ce9b1af46012a34372845a9e0c6c3cb49981cadf06a09d18 |
|
MD5 | 644788918b0ebc9b9f1548703ba4ef6e |
|
BLAKE2b-256 | 5ab0a82b06b005ea2322df79baf13fcc73ff4027fecfc2a67b08683a04b91bae |