skillfed

django-watchman

django-watchman exposes a status endpoint for your backing services

django-watchman v1.5.0 202.7K downloads/30d#9,643 on PyPI546
Permissive license BSD-3-Clause Active released

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-watchman

uv

uv add django-watchman

poetry

poetry add django-watchman

Installing 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

Development Status :: 5 - Production/StableFramework :: DjangoFramework :: Django :: 4.2Framework :: Django :: 5.1Framework :: Django :: 5.2Intended Audience :: DevelopersLicense :: OSI Approved :: BSD LicenseNatural Language :: EnglishProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

django health check endpointdjango service status monitoringdjango database cache statusdjango backing service healthdjango watchman status apidjango infrastructure monitoringdjango application health check
health-checkdjango-appmonitoring

More Monitoring packages

tqdm

Wraps any iterable to display a real-time…

copyleft · top 100 on PyPI

opentelemetry-semantic-conventions

Provides generated Python code for…

permissive · top 100 on PyPI

opentelemetry-sdk

Provides the reference implementation of the…

permissive · top 100 on PyPI

opentelemetry-api

Provides the abstract API and interfaces for…

permissive · top 100 on PyPI

opentelemetry-exporter-otlp-proto-http

Exports OpenTelemetry observability data to an…

permissive · top 1,000 on PyPI

opentelemetry-instrumentation

Provides automatic instrumentation commands and…

permissive · top 1,000 on PyPI

django-health-check

Provides pluggable health check endpoints for…

permissive · top 5,000 on PyPI

pywatchman

pywatchman is a Python client for Watchman, a…

permissive · top 15,000 on PyPI

django-ebhealthcheck

Automatically adds an Elastic Beanstalk…

permissive · top 15,000 on PyPI

django-watchfiles

Replaces Django's default file-change watcher…

permissive · top 15,000 on PyPI

django-dirtyfields

Tracks which fields on a Django model instance…

permissive · top 15,000 on PyPI

fastapi-health

Adds a health check endpoint to FastAPI…

permissive · top 15,000 on PyPI

py-healthcheck

Provides healthcheck and environment-dump…

permissive · top 15,000 on PyPI

djangorestframework

Builds web APIs on top of Django with…

permissive · top 1,000 on PyPI

django-prometheus

Exports Django application metrics (requests,…

permissive · top 5,000 on PyPI

drf-api-logger

Captures and logs Django REST Framework API…

permissive · top 15,000 on PyPI