1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
django-health-check
===================
|version| |pyversion| |djversion| |license|
This project checks for various conditions and provides reports when
anomalous behavior is detected.
The following health checks are bundled with this project:
- cache
- database
- storage
- disk and memory utilization (via ``psutil``)
- AWS S3 storage
- Celery task queue
- Celery ping
- RabbitMQ
- Migrations
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.
Use Cases
---------
The primary intended use case is to monitor conditions via HTTP(S), with
responses available in HTML and JSON formats. When you get back a
response that includes one or more problems, you can then decide the
appropriate course of action, which could include generating
notifications and/or automating the replacement of a failing node with a
new one. If you are monitoring health in a high-availability environment
with a load balancer that returns responses from multiple nodes, please
note that certain checks (e.g., disk and memory usage) will return
responses specific to the node selected by the load balancer.
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:
.. code:: shell
$ pip install django-health-check
Add the health checker to a URL you want to use:
.. code:: python
urlpatterns = [
# ...
url(r'^ht/', include('health_check.urls')),
]
Add the ``health_check`` applications to your ``INSTALLED_APPS``:
.. code:: python
INSTALLED_APPS = [
# ...
'health_check', # required
'health_check.db', # stock Django health checkers
'health_check.cache',
'health_check.storage',
'health_check.contrib.migrations',
'health_check.contrib.celery', # requires celery
'health_check.contrib.celery_ping', # requires celery
'health_check.contrib.psutil', # disk and memory utilization; requires psutil
'health_check.contrib.s3boto3_storage', # requires boto3 and S3BotoStorage backend
'health_check.contrib.rabbitmq', # requires RabbitMQ broker
'health_check.contrib.redis', # requires Redis broker
]
**Note:** If using ``boto 2.x.x`` use
``health_check.contrib.s3boto_storage``
(Optional) If using the ``psutil`` app, you can configure disk and
memory threshold settings; otherwise below defaults are assumed. If you
want to disable one of these checks, set its value to ``None``.
.. code:: python
HEALTH_CHECK = {
'DISK_USAGE_MAX': 90, # percent
'MEMORY_MIN': 100, # in MB
}
If using the DB check, run migrations:
.. code:: shell
$ django-admin migrate
To use the RabbitMQ healthcheck, please make sure that there is a
variable named ``BROKER_URL`` on django.conf.settings with the required
format to connect to your rabbit server. For example:
.. code:: python
BROKER_URL = "amqp://myuser:mypassword@localhost:5672/myvhost"
To use the Redis healthcheck, please make sure that there is a variable
named ``REDIS_URL`` on django.conf.settings with the required format to
connect to your redis server. For example:
.. code:: python
REDIS_URL = "redis://localhost:6370"
The cache healthcheck tries to write and read a specific key within the
cache backend. It can be customized by setting ``HEALTHCHECK_CACHE_KEY``
to another value:
.. code:: python
HEALTHCHECK_CACHE_KEY = "custom_healthcheck_key"
Setting up monitoring
---------------------
You can use tools like Pingdom, StatusCake or other uptime robots to
monitor service status. The ``/ht/`` endpoint will respond with an HTTP
200 if all checks passed and with an HTTP 500 if any of the tests
failed. 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`` or
pass ``format=json`` as a query parameter.
The backend will return a JSON response:
.. code:: shell
$ 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"
}
$ curl -v -X GET http://www.example.com/ht/?format=json
> GET /ht/?format=json HTTP/1.1
> Host: www.example.com
>
< 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:
.. code:: python
from health_check.backends import BaseHealthCheckBackend
class MyHealthCheckBackend(BaseHealthCheckBackend):
#: The status endpoints will respond with a 200 status code
#: even if the check errors.
critical_service = False
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:
.. code:: python
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:
.. code:: python
# 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 = []
status = 200 # needs to be filled status you need
# ...
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'),
]
Django command
--------------
You can run the Django command ``health_check`` to perform your health
checks via the command line, or periodically with a cron, as follow:
.. code:: shell
django-admin health_check
This should yield the following output:
::
DatabaseHealthCheck ... working
CustomHealthCheck ... unavailable: Something went wrong!
Similar to the http version, a critical error will cause the command to
quit with the exit code ``1``.
Other resources
---------------
- `django-watchman <https://github.com/mwarkentin/django-watchman>`__
is a package that does some of the same things in a slightly
different way.
.. |version| image:: https://img.shields.io/pypi/v/django-health-check.svg
:target: https://pypi.python.org/pypi/django-health-check/
.. |pyversion| image:: https://img.shields.io/pypi/pyversions/django-health-check.svg
:target: https://pypi.python.org/pypi/django-health-check/
.. |djversion| image:: https://img.shields.io/pypi/djversions/django-health-check.svg
:target: https://pypi.python.org/pypi/django-health-check/
.. |license| image:: https://img.shields.io/badge/license-MIT-blue.svg
:target: https://pypi.python.org/pypi/django-health-check/
|