From b994d9a70d62f10bcbf7535e180e5a2c34c64707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sun, 11 Feb 2024 10:32:26 +0200 Subject: [PATCH] fix: Fix health-check page rendering error on the website --- health-check/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/health-check/README.md b/health-check/README.md index afb6117bd..6543c092e 100644 --- a/health-check/README.md +++ b/health-check/README.md @@ -19,7 +19,8 @@ To ensure the stability and resilience of services in a microservices architectu ## Explanation In microservices architecture, it's critical to continuously check the health of individual services. The Health Check Pattern is a mechanism for microservices to expose their health status. This pattern is implemented by including a health check endpoint in microservices that returns the service's current state. This is vital for maintaining system resilience and operational readiness. -

For more information, see the Health Check API pattern on [Microservices.io](https://microservices.io/patterns/observability/health-check-api.html). + +For more information, see the Health Check API pattern on [Microservices.io](https://microservices.io/patterns/observability/health-check-api.html). ## Real World Example