Class ElasticsearchReactiveHealthIndicator
java.lang.Object
org.springframework.boot.actuate.health.AbstractReactiveHealthIndicator
org.springframework.boot.actuate.elasticsearch.ElasticsearchReactiveHealthIndicator
- All Implemented Interfaces:
 ReactiveHealthContributor,ReactiveHealthIndicator
HealthIndicator for an Elasticsearch cluster using a
 ReactiveElasticsearchClient.- Since:
 - 2.3.2
 - Author:
 - Brian Clozel, Aleksander Lech, Scott Frederick
 
- 
Constructor Summary
ConstructorsConstructorDescriptionElasticsearchReactiveHealthIndicator(org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient client)  - 
Method Summary
Modifier and TypeMethodDescriptionprotected reactor.core.publisher.Mono<Health>doHealthCheck(Health.Builder builder) Actual health check logic.Methods inherited from class org.springframework.boot.actuate.health.AbstractReactiveHealthIndicator
healthMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.boot.actuate.health.ReactiveHealthIndicator
getHealth 
- 
Constructor Details
- 
ElasticsearchReactiveHealthIndicator
public ElasticsearchReactiveHealthIndicator(org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient client)  
 - 
 - 
Method Details
- 
doHealthCheck
Description copied from class:AbstractReactiveHealthIndicatorActual health check logic. If an error occurs in the pipeline it will be handled automatically.- Specified by:
 doHealthCheckin classAbstractReactiveHealthIndicator- Parameters:
 builder- theHealth.Builderto report health status and details- Returns:
 - a 
Monothat provides theHealth 
 
 -