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 +```