Run checks on services like databases, queue servers, celery processes, etc.
Project description
This project checks the health for a number of backends and sees if they are able to connect and do a simple action.
The following health check backends are bundled into this project:
Cache
Database
Storage
AWS S3 storage
Celery task queue
Writing your own custom health checks is also very quick and easy.
We also like contributions, so don’t be afraid to make a pull request.
Supported Versions
We officially only support the latest Version of Python as well as the latest version of Django and the latest Django LTS version.
Installation
First install the django-health-check package:
pip install django-health-check
Add the health checker to an URL you want to use:
urlpatterns = [
# ...
url(r'^ht/', include('health_check.urls')),
]
Add the health_check applications to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
'health_check', # required
'health_check.db', # stock Django health checkers
'health_check.cache',
'health_check.storage',
'health_check.contrib.celery', # requires celery
'health_check.contrib.s3boto_storage', # requires boto and S3BotoStorage backend
]
If using the DB check, run migrations:
django-admin migrate
Setting up monitoring
You can use tools like Pingdom or other uptime robots to monitor service status. The /ht/ endpoint will respond a HTTP 200 if all checks passed and a HTTP 500 if any of the tests failed.
$ curl -v -X GET -H http://www.example.com/ht/
> GET /ht/ HTTP/1.1
> Host: www.example.com
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Type: text/html; charset=utf-8
<!-- This is an excerpt -->
<div class="container">
<h1>System status</h1>
<table>
<tr>
<td class="status_1"></td>
<td>CacheBackend</td>
<td>working</td>
</tr>
<tr>
<td class="status_1"></td>
<td>DatabaseBackend</td>
<td>working</td>
</tr>
<tr>
<td class="status_1"></td>
<td>S3BotoStorageHealthCheck</td>
<td>working</td>
</tr>
</table>
</div>
Getting machine readable JSON reports
If you want machine readable status reports you can request the /ht/ endpoint with the Accept HTTP header set to application/json.
The backend will return a JSON response:
$ curl -v -X GET -H "Accept: application/json" http://www.example.com/ht/
> GET /ht/ HTTP/1.1
> Host: www.example.com
> Accept: application/json
>
< HTTP/1.1 200 OK
< Content-Type: application/json
{
"CacheBackend": "working",
"DatabaseBackend": "working",
"S3BotoStorageHealthCheck": "working"
}
Writing a custom health check
Writing a health check is quick and easy:
from health_check.backends import BaseHealthCheckBackend
class MyHealthCheckBackend(BaseHealthCheckBackend):
def check_status(self):
# The test code goes here.
# You can use `self.add_error` or
# raise a `HealthCheckException`,
# similar to Django's form validation.
pass
def identifier(self):
return self.__class__.__name__ # Display name on the endpoint.
After writing a custom checker, register it in your app configuration:
from django.apps import AppConfig
from health_check.plugins import plugin_dir
class MyAppConfig(AppConfig):
name = 'my_app'
def ready(self):
from .backends import MyHealthCheckBackend
plugin_dir.register(MyHealthCheckBackend)
Make sure the application you write the checker into is registered in your INSTALLED_APPS.
Customizing output
You can customize HTML or JSON rendering by inheriting from MainView in health_check.views and customizing the template_name, get, render_to_response and render_to_response_json properties:
# views.py
from health_check.views import MainView
class HealthCheckCustomView(MainView):
template_name = 'myapp/health_check_dashboard.html' # customize the used templates
def get(self, request, *args, **kwargs):
plugins = []
# ...
if 'application/json' in request.META.get('HTTP_ACCEPT', ''):
return self.render_to_response_json(plugins, status)
return self.render_to_response(plugins, status)
def render_to_response(self, plugins, status): # customize HTML output
return HttpResponse('COOL' if status == 200 else 'SWEATY', status=status)
def render_to_response_json(self, plugins, status): # customize JSON output
return JsonResponse(
{str(p.identifier()): 'COOL' if status == 200 else 'SWEATY' for p in plugins}
status=status
)
# urls.py
import views
urlpatterns = [
# ...
url(r'^ht/$', views.HealthCheckCustomView.as_view(), name='health_check_custom'),
]
Other resources
django-watchman is a package that does some of the same things in a slightly different way.
See this weblog about configuring Django and health checking with AWS Elastic Load Balancer.
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
File details
Details for the file django-health-check-3.4.2.tar.gz
.
File metadata
- Download URL: django-health-check-3.4.2.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfc88a3783f2fd8867dccbfce9653d90430f85b3e6fb940c5a67cce6c796714c |
|
MD5 | cc5d52d16e9cb617d126ad2285f5ed6d |
|
BLAKE2b-256 | bedce15aef6ee5223d70e2e8427b5743a1528a4e000cf4689b1a7ebe208b58ed |