{"library":"django-health-check","type":"library","category":null,"description":"Django HealthCheck is a plug-and-play Django application that provides a /healthcheck/ endpoint to monitor the health of your Django app and its connected services like databases, caches, storage, Celery, and more. It returns HTTP 200 for healthy status and HTTP 500 if issues are detected. The current version is 4.2.2, and it maintains a regular release cadence with frequent updates and bug fixes.","language":"python","status":"active","version":"4.2.2","tags":["django","health check","monitoring","devops","liveness","readiness"],"last_verified":"Wed May 20","install":[{"cmd":"pip install django-health-check","imports":["INSTALLED_APPS = [\n    # ...\n    'health_check', # required\n    'health_check.db', # database check\n    'health_check.cache', # cache check\n    'health_check.storage', # storage check\n    'health_check.contrib.celery', # optional, for Celery\n    'health_check.contrib.psutil', # optional, for disk/memory\n    # ...\n]","from django.urls import include, path\n\nurlpatterns = [\n    # ...\n    path('health/', include('health_check.urls')), # or any desired path\n    # ...\n]","from django.apps import AppConfig\nfrom health_check.plugins import plugin_dir\nfrom myapp.checks import MyCustomHealthCheck\n\nclass MyAppConfig(AppConfig):\n    name = 'myapp'\n    def ready(self):\n        plugin_dir.register(MyCustomHealthCheck)"]},{"cmd":"pip install django-health-check[psutil,celery,redis]","imports":[]}],"homepage":null,"github":"https://github.com/codingjoe/django-health-check","docs":"https://codingjoe.dev/django-health-check/","changelog":"https://github.com/codingjoe/django-health-check/releases","pypi":"https://pypi.org/project/django-health-check/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"compatibility":{"summary":{"python_range":"3.10–3.9","success_rate":50,"avg_install_s":4.5,"avg_import_s":null,"wheel_type":"wheel"},"url":"https://checklist.day/v1/registry/django-health-check/compatibility"}}