How to setup health check page in django
You can use django-health-check
3rd party app.
Install it using pip -
pip install django-health-check
Configue URL as -
urlpatterns = [
# ...
url(r'^health_check/', include('health_check.urls')),
]
and add the health_check applications to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
'health_check', # required
]
More details : https://github.com/KristianOellegaard/django-health-check
Now you can confiure ELB health check url as - /health_check/