Metadata-Version: 2.0
Name: django-health-monitor
Version: 0.1.1
Summary: A Django  app to help track system health and give real-time feedback.
Home-page: https://github.com/seanchon/django-health-monitor
Author: Sean Chon
Author-email: s@seanchon.com
License: MIT
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: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD 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: django-model-utils (>=2.0)
Requires-Dist: jsonfield

=============================
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/seanchon/django-health-monitor.png?branch=master
    :target: https://travis-ci.org/seanchon/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
----------

Install Django Health Monitor::

    pip install django-health-monitor

Then use it in a project::

    import health_monitor

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.


