Closed ankraus closed 1 week ago
public
: 22.1% ❌Tests 📝 | Passed ✅ | Failed ❌ | Skipped ⏭️ | Pending ⏳ | Other ❓ | Flaky 🍂 | Duration ⏱️ |
---|---|---|---|---|---|---|---|
21 | 21 | 0 | 0 | 0 | 0 | 0 | 2ms |
private
: 27.9% ❌Tests 📝 | Passed ✅ | Failed ❌ | Skipped ⏭️ | Pending ⏳ | Other ❓ | Flaky 🍂 | Duration ⏱️ |
---|---|---|---|---|---|---|---|
21 | 21 | 0 | 0 | 0 | 0 | 0 | 1ms |
private
: 55.0% ✅Tests 📝 | Passed ✅ | Failed ❌ | Skipped ⏭️ | Pending ⏳ | Other ❓ | Flaky 🍂 | Duration ⏱️ |
---|---|---|---|---|---|---|---|
48 | 48 | 0 | 0 | 0 | 0 | 0 | 12.0s |
public
: 67.7% ✅Tests 📝 | Passed ✅ | Failed ❌ | Skipped ⏭️ | Pending ⏳ | Other ❓ | Flaky 🍂 | Duration ⏱️ |
---|---|---|---|---|---|---|---|
100 | 100 | 0 | 0 | 0 | 0 | 0 | 19.1s |
private
: 55.0% ✅public
: 67.7% ✅Tests 📝 | Passed ✅ | Failed ❌ | Skipped ⏭️ | Pending ⏳ | Other ❓ | Flaky 🍂 | Duration ⏱️ |
---|---|---|---|---|---|---|---|
100 | 100 | 0 | 0 | 0 | 0 | 0 | 19.1s |
Tests 📝 | Passed ✅ | Failed ❌ | Skipped ⏭️ | Pending ⏳ | Other ❓ | Flaky 🍂 | Duration ⏱️ |
---|---|---|---|---|---|---|---|
48 | 48 | 0 | 0 | 0 | 0 | 0 | 12.0s |
Description
This PR introduces a heartbeat route which indicates the health of the backend services during deployment. It is accessible at the root level (e.g.
http://localhost:8080/heartbeat
). Performing aGET
-request on that route will return a raw body containingtrue
and status code200
if the healthcheck is successful. If the healthcheck doesn't succeed, it will returnfalse
and a status of500
.Fixes #385
Type of change
Please select the option that best describes the changes made:
Changes