Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 858 Bytes

File metadata and controls

38 lines (26 loc) · 858 Bytes

Django

This documents the code that allows Django integration.

Checks

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:

Signals

.. automodule:: dockerflow.django.signals

Views

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: