Skip to main content

Various health check view for the Django Framework

Project description

drf_health_check

Various health check extensions for the Django Rest Framework

PyPI Version

Installation

Using pip

pip install drf_health_check

Using pipenv

pipenv install drf_health_check

Quick start

In your project’s settings.py add HEALTH_CHECK_PROVIDERS.

HEALTH_CHECK_PROVIDERS = {
    ...
    'drf_health_check.providers.DBHealthCheckProvider',
    ...
}

Add drf_health_check to INSTALLED_APPS

INSTALLED_APPS = [
    ...
    "drf_health_check",
]

Add urls to you project for health-view

urlpatterns = [
    ...
    url("health/", include('django_health_check_view.urls')),
    ...
]

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

drf_health_check-0.0.12.tar.gz (19.6 kB view hashes)

Uploaded Source

Built Distribution

drf_health_check-0.0.12-py3-none-any.whl (6.0 kB view hashes)

Uploaded 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