Metadata-Version: 1.1
Name: django-healthchecks
Version: 0.1.0
Summary: Simple Django app/framework to publish health check for monitoring purposes



Status

======

.. image:: https://travis-ci.org/mvantellingen/django-healthchecks.svg?branch=master

    :target: https://travis-ci.org/mvantellingen/django-healthchecks



.. image:: https://coveralls.io/repos/mvantellingen/django-healthchecks/badge.svg

    :alt: Coverage

    :target: https://coveralls.io/r/mvantellingen/django-healthchecks

    

.. image:: https://pypip.in/version/django_healthchecks/badge.svg

    :target: https://pypi.python.org/pypi/django_healthchecks/



Usage

=====



Add the following to your urls.py:



    url(r'^healthchecks/', include('django_healthchecks.urls')),



Add a setting with the available healthchecks:



    HEALTH_CHECKS = {

        'postgresql': 'django_healthchecks.contrib.check_database',

        'solr': 'your_project.lib.healthchecks.check_solr',

    }



Home-page: https://github.com/mvantellingen/django-healthchecks
Author: Michael van Tellingen
Author-email: michaelvantellingen@gmail.com
License: MIT
Description: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
