From 476e1ed9fe3e0338e37c7ba36901e36bea1f298f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Werner?= Date: Fri, 5 Jan 2024 14:36:18 +0100 Subject: [PATCH] fix healthcheck.md --- docs/api/middleware/healthcheck.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/api/middleware/healthcheck.md b/docs/api/middleware/healthcheck.md index 3f2bb6c5fb..641c236b1b 100644 --- a/docs/api/middleware/healthcheck.md +++ b/docs/api/middleware/healthcheck.md @@ -1,8 +1,9 @@ --- id: healthcheck -title: healthcheck --- +# Health Check + Liveness and readiness probes middleware for [Fiber](https://github.com/gofiber/fiber) that provides two endpoints for checking the liveness and readiness state of HTTP applications. ## Overview @@ -27,7 +28,7 @@ func New(config Config) fiber.Handler ## Examples -Import the middleware package that is part of the Fiber web framework +Import the middleware package that is part of the [Fiber](https://github.com/gofiber/fiber) web framework ```go import ( "github.com/gofiber/fiber/v2" @@ -35,7 +36,7 @@ import ( ) ``` -After you initiate your Fiber app, you can use the following possibilities: +After you initiate your [Fiber](https://github.com/gofiber/fiber) app, you can use the following possibilities: ```go // Provide a minimal config @@ -102,4 +103,4 @@ var ConfigDefault = Config{ LivenessEndpoint: "/livez", ReadinessEndpoint: "/readyz", } -``` \ No newline at end of file +```