/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/HealthIndicatorAutoConfiguration.java

https://gitlab.com/luyuwww/spring-boot · Java · 259 lines · 201 code · 35 blank · 23 comment · 19 complexity · 09f1826babf952e5fa16da55cdc30910 MD5 · raw file

  1. /*
  2. * Copyright 2012-2014 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.boot.actuate.autoconfigure;
  17. import java.util.Collection;
  18. import java.util.Collections;
  19. import java.util.List;
  20. import java.util.Map;
  21. import javax.sql.DataSource;
  22. import org.apache.solr.client.solrj.SolrServer;
  23. import org.springframework.amqp.rabbit.core.RabbitTemplate;
  24. import org.springframework.beans.factory.annotation.Autowired;
  25. import org.springframework.beans.factory.annotation.Value;
  26. import org.springframework.boot.actuate.health.ApplicationHealthIndicator;
  27. import org.springframework.boot.actuate.health.CompositeHealthIndicator;
  28. import org.springframework.boot.actuate.health.DataSourceHealthIndicator;
  29. import org.springframework.boot.actuate.health.HealthAggregator;
  30. import org.springframework.boot.actuate.health.HealthIndicator;
  31. import org.springframework.boot.actuate.health.MongoHealthIndicator;
  32. import org.springframework.boot.actuate.health.OrderedHealthAggregator;
  33. import org.springframework.boot.actuate.health.RabbitHealthIndicator;
  34. import org.springframework.boot.actuate.health.RedisHealthIndicator;
  35. import org.springframework.boot.actuate.health.SolrHealthIndicator;
  36. import org.springframework.boot.autoconfigure.AutoConfigureAfter;
  37. import org.springframework.boot.autoconfigure.AutoConfigureBefore;
  38. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  39. import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration;
  40. import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
  41. import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
  42. import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
  43. import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
  44. import org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadata;
  45. import org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvider;
  46. import org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProviders;
  47. import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration;
  48. import org.springframework.boot.autoconfigure.mongo.MongoDataAutoConfiguration;
  49. import org.springframework.boot.autoconfigure.redis.RedisAutoConfiguration;
  50. import org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration;
  51. import org.springframework.context.annotation.Bean;
  52. import org.springframework.context.annotation.Configuration;
  53. import org.springframework.data.mongodb.core.MongoTemplate;
  54. import org.springframework.data.redis.connection.RedisConnectionFactory;
  55. /**
  56. * {@link EnableAutoConfiguration Auto-configuration} for {@link HealthIndicator}s.
  57. *
  58. * @author Christian Dupuis
  59. * @author Andy Wilkinson
  60. * @author Stephane Nicoll
  61. * @since 1.1.0
  62. */
  63. @Configuration
  64. @AutoConfigureBefore({ EndpointAutoConfiguration.class })
  65. @AutoConfigureAfter({ DataSourceAutoConfiguration.class, MongoAutoConfiguration.class,
  66. MongoDataAutoConfiguration.class, RedisAutoConfiguration.class,
  67. RabbitAutoConfiguration.class, SolrAutoConfiguration.class })
  68. public class HealthIndicatorAutoConfiguration {
  69. @Value("${health.status.order:}")
  70. private List<String> statusOrder = null;
  71. @Bean
  72. @ConditionalOnMissingBean
  73. public HealthAggregator healthAggregator() {
  74. OrderedHealthAggregator healthAggregator = new OrderedHealthAggregator();
  75. if (this.statusOrder != null) {
  76. healthAggregator.setStatusOrder(this.statusOrder);
  77. }
  78. return healthAggregator;
  79. }
  80. @Bean
  81. @ConditionalOnMissingBean(HealthIndicator.class)
  82. public HealthIndicator applicationHealthIndicator() {
  83. return new ApplicationHealthIndicator();
  84. }
  85. @Configuration
  86. @ConditionalOnBean(DataSource.class)
  87. @ConditionalOnExpression("${health.db.enabled:true}")
  88. public static class DataSourcesHealthIndicatorConfiguration {
  89. @Autowired
  90. private HealthAggregator healthAggregator;
  91. @Autowired(required = false)
  92. private Map<String, DataSource> dataSources;
  93. @Autowired(required = false)
  94. private Collection<DataSourcePoolMetadataProvider> metadataProviders = Collections
  95. .emptyList();
  96. @Bean
  97. @ConditionalOnMissingBean(name = "dbHealthIndicator")
  98. public HealthIndicator dbHealthIndicator() {
  99. DataSourcePoolMetadataProvider metadataProvider = new DataSourcePoolMetadataProviders(
  100. this.metadataProviders);
  101. if (this.dataSources.size() == 1) {
  102. DataSource dataSource = this.dataSources.values().iterator().next();
  103. return createDataSourceHealthIndicator(metadataProvider, dataSource);
  104. }
  105. CompositeHealthIndicator composite = new CompositeHealthIndicator(
  106. this.healthAggregator);
  107. for (Map.Entry<String, DataSource> entry : this.dataSources.entrySet()) {
  108. String name = entry.getKey();
  109. DataSource dataSource = entry.getValue();
  110. composite.addHealthIndicator(name,
  111. createDataSourceHealthIndicator(metadataProvider, dataSource));
  112. }
  113. return composite;
  114. }
  115. private DataSourceHealthIndicator createDataSourceHealthIndicator(
  116. DataSourcePoolMetadataProvider provider, DataSource dataSource) {
  117. String validationQuery = null;
  118. DataSourcePoolMetadata poolMetadata = provider
  119. .getDataSourcePoolMetadata(dataSource);
  120. if (poolMetadata != null) {
  121. validationQuery = poolMetadata.getValidationQuery();
  122. }
  123. return new DataSourceHealthIndicator(dataSource, validationQuery);
  124. }
  125. }
  126. @Configuration
  127. @ConditionalOnBean(MongoTemplate.class)
  128. @ConditionalOnExpression("${health.mongo.enabled:true}")
  129. public static class MongoHealthIndicatorConfiguration {
  130. @Autowired
  131. private HealthAggregator healthAggregator;
  132. @Autowired
  133. private Map<String, MongoTemplate> mongoTemplates;
  134. @Bean
  135. @ConditionalOnMissingBean(name = "mongoHealthIndicator")
  136. public HealthIndicator mongoHealthIndicator() {
  137. if (this.mongoTemplates.size() == 1) {
  138. return new MongoHealthIndicator(this.mongoTemplates.values().iterator()
  139. .next());
  140. }
  141. CompositeHealthIndicator composite = new CompositeHealthIndicator(
  142. this.healthAggregator);
  143. for (Map.Entry<String, MongoTemplate> entry : this.mongoTemplates.entrySet()) {
  144. composite.addHealthIndicator(entry.getKey(), new MongoHealthIndicator(
  145. entry.getValue()));
  146. }
  147. return composite;
  148. }
  149. }
  150. @Configuration
  151. @ConditionalOnBean(RedisConnectionFactory.class)
  152. @ConditionalOnExpression("${health.redis.enabled:true}")
  153. public static class RedisHealthIndicatorConfiguration {
  154. @Autowired
  155. private HealthAggregator healthAggregator;
  156. @Autowired
  157. private Map<String, RedisConnectionFactory> redisConnectionFactories;
  158. @Bean
  159. @ConditionalOnMissingBean(name = "redisHealthIndicator")
  160. public HealthIndicator redisHealthIndicator() {
  161. if (this.redisConnectionFactories.size() == 1) {
  162. return new RedisHealthIndicator(this.redisConnectionFactories.values()
  163. .iterator().next());
  164. }
  165. CompositeHealthIndicator composite = new CompositeHealthIndicator(
  166. this.healthAggregator);
  167. for (Map.Entry<String, RedisConnectionFactory> entry : this.redisConnectionFactories
  168. .entrySet()) {
  169. composite.addHealthIndicator(entry.getKey(), new RedisHealthIndicator(
  170. entry.getValue()));
  171. }
  172. return composite;
  173. }
  174. }
  175. @Configuration
  176. @ConditionalOnBean(RabbitTemplate.class)
  177. @ConditionalOnExpression("${health.rabbit.enabled:true}")
  178. public static class RabbitHealthIndicatorConfiguration {
  179. @Autowired
  180. private HealthAggregator healthAggregator;
  181. @Autowired
  182. private Map<String, RabbitTemplate> rabbitTemplates;
  183. @Bean
  184. @ConditionalOnMissingBean(name = "rabbitHealthIndicator")
  185. public HealthIndicator rabbitHealthIndicator() {
  186. if (this.rabbitTemplates.size() == 1) {
  187. return new RabbitHealthIndicator(this.rabbitTemplates.values().iterator()
  188. .next());
  189. }
  190. CompositeHealthIndicator composite = new CompositeHealthIndicator(
  191. this.healthAggregator);
  192. for (Map.Entry<String, RabbitTemplate> entry : this.rabbitTemplates
  193. .entrySet()) {
  194. composite.addHealthIndicator(entry.getKey(), new RabbitHealthIndicator(
  195. entry.getValue()));
  196. }
  197. return composite;
  198. }
  199. }
  200. @Configuration
  201. @ConditionalOnBean(SolrServer.class)
  202. @ConditionalOnExpression("${health.solr.enabled:true}")
  203. public static class SolrHealthIndicatorConfiguration {
  204. @Autowired
  205. private HealthAggregator healthAggregator;
  206. @Autowired
  207. private Map<String, SolrServer> solrServers;
  208. @Bean
  209. @ConditionalOnMissingBean(name = "solrHealthIndicator")
  210. public HealthIndicator rabbitHealthIndicator() {
  211. if (this.solrServers.size() == 1) {
  212. return new SolrHealthIndicator(this.solrServers.entrySet().iterator()
  213. .next().getValue());
  214. }
  215. CompositeHealthIndicator composite = new CompositeHealthIndicator(
  216. this.healthAggregator);
  217. for (Map.Entry<String, SolrServer> entry : this.solrServers.entrySet()) {
  218. composite.addHealthIndicator(entry.getKey(), new SolrHealthIndicator(
  219. entry.getValue()));
  220. }
  221. return composite;
  222. }
  223. }
  224. }