From b0f178299792b93d7d26a869639c06450ad9a9e6 Mon Sep 17 00:00:00 2001 From: Tadaya Tsuyukubo Date: Tue, 28 Jul 2020 13:03:51 -0700 Subject: [PATCH] Document properties to enable probe health indicators Document property names to enable probe(readiness/liveness) health indicators. --- .../src/docs/asciidoc/production-ready-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc index f7987affaeea..b7b7f4b6ab2a 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc @@ -720,10 +720,10 @@ developers can use their configuration property to activate them: | Name | Description | {spring-boot-actuator-module-code}/availability/LivenessStateHealthIndicator.java[`LivenessStateHealthIndicator`] -| Checks the liveness state of the application. +| Checks the liveness state of the application. Enabled by `management.health.livenessstate.enabled` property. | {spring-boot-actuator-module-code}/availability/ReadinessStateHealthIndicator.java[`ReadinessStateHealthIndicator`] -| Checks the readiness state of the application. +| Checks the readiness state of the application. Enabled by `management.health.readinessstate.enabled` property. |===