This documents the code that allows Django integration.
The provided checks hook into Django's system check framework to enable the :func:`heartbeat view <dockerflow.django.views.heartbeat>` to diagnose the current health of the Django project.
.. automodule:: dockerflow.django.checks :members:
.. automodule:: dockerflow.django.signals
dockerflow.django implements various views so the automatic application
monitoring can happen. They are mounted by including them in the root of a
URL configration:
urlpatterns = [
url(r'^', include('dockerflow.django.urls', namespace='dockerflow')),
# ...
].. automodule:: dockerflow.django.views :members: