django-uptime

Editable non-cached monitorization path for Django


Keywords
moritorization, uptime
License
MIT
Install
pip install django-uptime==0.5

Documentation

GitHub Workflow Status PyPI GitHub

django-uptime

Editable non-cached monitorization path for Django

Installation

To install django_uptime simply run:

   pip install django-uptime

Configuration

We need to hook django-uptime into our project.

  1. Put django_uptime into your INSTALLED_APPS at settings module:
   INSTALLED_APPS = (
       # other apps
       "django_uptime",
   )
  1. Include the desired url path into your projects main urls.py file:
   from django.urls import include, path

   urlpatterns = [
      ...
      path('ok/', include('django_uptime.urls')),
      ...
   ]