From 0402ed38f7d9ad6ffb399149bad16e197060329b Mon Sep 17 00:00:00 2001 From: Christian Dupuis Date: Sat, 10 May 2014 11:17:01 +0200 Subject: [PATCH] Update documentation to include note about RabbitMQ health support --- .../src/main/asciidoc/production-ready-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 80e3c848b73..89b60e2a7d0 100644 --- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -165,10 +165,10 @@ To provide custom health information you can register a Spring bean that impleme Spring Boot provides a {sc-spring-boot-actuator}/health/SimpleDatabaseHealthIndicator.{sc-ext}[`SimpleDatabaseHealthIndicator`] implementation that attempts a simple database test as well as implementations for -Redis and MongoDB. +Redis, MongoDB and RabbitMQ. Spring Boot adds the `HealthIndicator` instances automatically if beans of type `DataSource`, -`MongoTemplate` or `RedisConnectionFactory` are present in the `ApplicationContext`. +`MongoTemplate`, `RedisConnectionFactory`, `RabbitTemplate` are present in the `ApplicationContext`.