From 0c098410131a6d3f034e067ab85064ab77573f38 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 29 Apr 2021 12:28:43 +0200 Subject: [PATCH] Document property names to enable reactive health indicators Closes gh-26279 --- .../src/docs/asciidoc/production-ready-features.adoc | 9 +++++++-- 1 file changed, 7 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 7de3cb6372..4be77b65fe 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 @@ -868,22 +868,27 @@ TIP: To handle the error automatically, consider extending from `AbstractReactiv ==== Auto-configured ReactiveHealthIndicators The following `ReactiveHealthIndicators` are auto-configured by Spring Boot when appropriate: -[cols="1,4"] +[cols="2,4,6"] |=== -| Name | Description +| Key | Name | Description +| `cassandra` | {spring-boot-actuator-module-code}/cassandra/CassandraReactiveHealthIndicator.java[`CassandraReactiveHealthIndicator`] | Checks that a Cassandra database is up. +| `couchbase` | {spring-boot-actuator-module-code}/couchbase/CouchbaseReactiveHealthIndicator.java[`CouchbaseReactiveHealthIndicator`] | Checks that a Couchbase cluster is up. +| `elasticsearch` | {spring-boot-actuator-module-code}/elasticsearch/ElasticsearchReactiveHealthIndicator.java[`ElasticsearchReactiveHealthIndicator`] | Checks that an Elasticsearch cluster is up. +| `mongo` | {spring-boot-actuator-module-code}/mongo/MongoReactiveHealthIndicator.java[`MongoReactiveHealthIndicator`] | Checks that a Mongo database is up. +| `redis` | {spring-boot-actuator-module-code}/redis/RedisReactiveHealthIndicator.java[`RedisReactiveHealthIndicator`] | Checks that a Redis server is up. |===