django-watchman
django-watchman exposes a status endpoint for your backing services
What it is and what it does
django-watchman is a Django app that adds a simple HTTP endpoint to your application that returns the health status of your backing infrastructure—databases, caches, and storage—as JSON. It's designed for external monitoring systems and infrastructure introspection, allowing you to check whether your application's dependencies are up and responding without needing to instrument your application code directly.
You install it as a Django app, add it to your URL configuration, and immediately get a `/watchman/` endpoint that reports the status of each configured service. The package has been in production use since 2014, supports modern Python (3.10–3.14) and Django versions (4.2, 5.1, 5.2), and carries no external dependencies beyond Django itself.
Use it for:
- Expose a health-check endpoint for load balancers or orchestration systems to verify application readiness before routing traffic.
- Monitor database and cache connectivity from external monitoring tools without adding custom instrumentation.
- Provide infrastructure visibility to operations teams via a secure URL that reports real-time service status.
- Integrate with uptime monitoring services that need a simple JSON endpoint to confirm all backing services are operational.
- Diagnose infrastructure issues quickly by checking which specific services (database, cache, storage) are failing.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
django-watchman exposes a status endpoint that reports the health of your application's backing services—databases, caches, storage—as JSON, enabling external monitoring and introspection.
Yes. django-watchman is a lightweight, production-tested package that solves a real operational need with minimal friction. It has no external dependencies beyond Django, carries a permissive license, is actively maintained, and supports current Python and Django versions. Install it if you need external monitoring of your application's backing services.
Install
django-watchman on PyPI
pip
pip install django-watchmanuv
uv add django-watchmanpoetry
poetry add django-watchmanInstalling django-watchman
Before you install
Low install friction: a pure Python wheel with only django as a runtime dependency. Actively maintained with recent commits and a stable release history since 2014; supports current Python versions (3.10–3.14) and recent Django versions (4.2, 5.1, 5.2).
License in practice
BSD-3-Clause is permissive and poses no restrictions on commercial or proprietary use; you may use, modify, and redistribute this package freely provided you include the license notice.
Quickstart
pip install django-watchman
# In settings.py
INSTALLED_APPS = (
...
'watchman',
)
# In urls.py
from django.urls import re_path, include
re_path(r'^watchman/', include('watchman.urls'))
# Visit http://127.0.0.1:8000/watchman/ for JSON status
Verify before relying
- Whether custom health checks beyond databases, caches, and storage can be registered or extended.
- Authentication or authorization mechanisms available to restrict access to the status endpoint.
- Performance impact when monitoring many backing services or in high-traffic deployments.
Package facts
| License | BSD-3-Clause (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — django |
| Maintenance | actively maintained — 159 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 202,665/month — #9,643 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: django_watchman-1.5.0-py3-none-any.whl
Keywords: django, health-check, status, watchman
Tags
More Monitoring packages
Wraps any iterable to display a real-time…
copyleft · top 100 on PyPI
opentelemetry-semantic-conventionsProvides generated Python code for…
permissive · top 100 on PyPI
opentelemetry-sdkProvides the reference implementation of the…
permissive · top 100 on PyPI
opentelemetry-apiProvides the abstract API and interfaces for…
permissive · top 100 on PyPI
opentelemetry-exporter-otlp-proto-httpExports OpenTelemetry observability data to an…
permissive · top 1,000 on PyPI
opentelemetry-instrumentationProvides automatic instrumentation commands and…
permissive · top 1,000 on PyPI
django-health-checkProvides pluggable health check endpoints for…
permissive · top 5,000 on PyPI
pywatchmanpywatchman is a Python client for Watchman, a…
permissive · top 15,000 on PyPI
django-ebhealthcheckAutomatically adds an Elastic Beanstalk…
permissive · top 15,000 on PyPI
django-watchfilesReplaces Django's default file-change watcher…
permissive · top 15,000 on PyPI
django-dirtyfieldsTracks which fields on a Django model instance…
permissive · top 15,000 on PyPI
fastapi-healthAdds a health check endpoint to FastAPI…
permissive · top 15,000 on PyPI
py-healthcheckProvides healthcheck and environment-dump…
permissive · top 15,000 on PyPI
djangorestframeworkBuilds web APIs on top of Django with…
permissive · top 1,000 on PyPI
django-prometheusExports Django application metrics (requests,…
permissive · top 5,000 on PyPI
drf-api-loggerCaptures and logs Django REST Framework API…
permissive · top 15,000 on PyPI