Skip to main content

Django pluggable app to monitor the service status

Project description

https://badge.fury.io/py/django-service-status.svg https://travis-ci.org/mrc75/django-service-status.svg?branch=master https://travis-ci.org/mrc75/django-service-status.svg?branch=develop https://codecov.io/gh/mrc75/django-service-status/branch/develop/graph/badge.svg

Django pluggable app to monitor the service status

Documentation

Django Service Status is a set of checks that are run every time your http://example.com/service_status/ page is visited.

The full documentation is at https://django-service-status.readthedocs.io.

Quickstart

Install Django Service Status:

pip install django-service-status

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'service_status.apps.ServiceStatusConfig',
    ...
)

Add Django Service Status’s URL patterns:

from service_status import urls as service_status_urls


urlpatterns = [
    ...
    url(r'^service_status/', include(service_status_urls, namespace='service-status')),
    ...
]

Features

Builtin checks are:

  • database

  • swap memory

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

History

0.1.0 (2017-04-10)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-service-status-0.1.0.tar.gz (8.6 kB view hashes)

Uploaded Source

Built Distribution

django_service_status-0.1.0-py2.py3-none-any.whl (9.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page