Metadata-Version: 2.0
Name: django-health-monitor
Version: 0.2.1
Summary: A Django  app to help track system health and give real-time feedback.
Home-page: https://github.com/gracenote/django-health-monitor
Author: Sean Chon
Author-email: s@seanchon.com
License: Apache License 2.0
Keywords: django-health-monitor
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: jsonfield
Requires-Dist: python-dateutil
Requires-Dist: pytz

=============================
Django Health Monitor
=============================

.. image:: https://img.shields.io/pypi/l/django-health-monitor.svg
    :target: https://pypi.python.org/pypi/django-health-monitor

.. image:: https://img.shields.io/pypi/pyversions/django-health-monitor.svg
    :target: https://pypi.python.org/pypi/django-health-monitor

.. image:: https://badge.fury.io/py/django-health-monitor.png
    :target: https://badge.fury.io/py/django-health-monitor

.. image:: https://travis-ci.org/gracenote/django-health-monitor.png?branch=master
    :target: https://travis-ci.org/gracenote/django-health-monitor

.. image:: https://img.shields.io/codecov/c/github/gracenote/django-health-monitor/master.svg
    :target: https://codecov.io/gh/gracenote/django-health-monitor

A Django app to help track the health of a system and give real-time feedback. (CURRENTLY IN DEVELOPMENT)

The application consists of the following components:

- An API endpoint that allows monitoring scripts to update test results to a unique identifier of an asset.
- API endpoints for retrieving historical result of an asset.
- A notification engine allowing customized notifications based on test results.

Documentation
-------------

The full documentation is at https://django-health-monitor.readthedocs.org.

Quickstart
----------

django-health-monitor is available on `PyPI <https://pypi.python.org/pypi/django-health-monitor>`_ and can be installed using pip::

    $ pip install django-health-monitor

After installing, add ``'health_monitor'`` to ``INSTALLED_APPS`` in ``settings.py``.

Features
--------

* TODO

Running Tests
--------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install -r requirements_test.txt
    (myenv) $ python runtests.py

Credits
---------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2016-11-04)
++++++++++++++++++

* First release on PyPI.


