From 21a8efd9b8af47fb04eb72f6598929be367ca367 Mon Sep 17 00:00:00 2001 From: Joe Di Pol Date: Fri, 29 Mar 2024 09:18:19 -0700 Subject: [PATCH] Update SE health docs to match code snippet for health endpoints --- docs/src/main/asciidoc/se/health.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/se/health.adoc b/docs/src/main/asciidoc/se/health.adoc index b999f91a5b9..69c384549b9 100644 --- a/docs/src/main/asciidoc/se/health.adoc +++ b/docs/src/main/asciidoc/se/health.adoc @@ -492,9 +492,9 @@ specification is also provided for the Kubernetes service and deployment. ---- include::{sourcedir}/se/HealthSnippets.java[tag=snippet_8, indent=0] ---- -<1> The health service for the `liveness` probe is exposed at `/observe/health/live`. +<1> The health service for the `liveness` probe is exposed at `/health/live`. <2> Using the built-in health checks for the `liveness` probe. -<3> The health service for the `readiness` probe is exposed at `/observe/health/ready`. +<3> The health service for the `readiness` probe is exposed at `/health/ready`. <4> Using a custom health check for a pseudo database that is always `UP`. <5> Route the `observe` feature exclusively on the `observe` socket. <6> The default socket uses port 8080 for the default routes.