Skip to content

Tags: WEGOTRADE/django-health-check

Tags

3.8.0

Add a NotImplementedError warning to celery health check (revsys#201)

This can be triggered if the result backend isn't set which
unfortunately took a long time for me to sort out because
the error message was so ambiguous.

3.7.1

Fix revsys#199 -- Delete actual filename returned by save method (rev…

…sys#200)

Storage backends will call `get_available_name` before saving a file, which can alter the path on some storage backend implementations.

3.7.0

Add RabbitMQ health check (revsys#197)

3.6.1

Add connection error exception for cache backend (revsys#195)

* Add connection error exception for cache backend

* remove exception catchall

3.6.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for warnings that do not error endpoints (revsys#193)

Add a new concept of warnings and non-critical services. Both
will not cause the template and JSON endpoint to response with a
500 status code but with a regular 200. This change is backwards
compatible because the existing warnings are treated as errors by
default.

Close revsys#191

3.5.1

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Replace f-strings with standard strings, for Python 3.5 compatibility (

…revsys#186)

3.5.0

Add checks for disk and memory utilization (revsys#169)

Full disks and out-of-memory conditions are among the primary causes of
service outages, and they are easy to check for.

3.4.3

Closes database connection at every health check

3.4.2

Fix revsys#178 -- Close connections when exeting threads

Django uses separate connections for each thread be default.
Open connections are only closed by default when the
`request_finished` signal is called, which does not happen in our
case.

3.4.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix revsys#180 -- Limit threads to number of active plugins (revsys#181)