Class RedisReactiveHealthIndicator
java.lang.Object
org.springframework.boot.actuate.health.AbstractReactiveHealthIndicator
org.springframework.boot.actuate.redis.RedisReactiveHealthIndicator
- All Implemented Interfaces:
 ReactiveHealthContributor,ReactiveHealthIndicator
A 
ReactiveHealthIndicator for Redis.- Since:
 - 2.0.0
 - Author:
 - Stephane Nicoll, Mark Paluch, Artsiom Yudovin, Scott Frederick
 
- 
Constructor Summary
ConstructorsConstructorDescriptionRedisReactiveHealthIndicator(org.springframework.data.redis.connection.ReactiveRedisConnectionFactory connectionFactory)  - 
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
- 
RedisReactiveHealthIndicator
public RedisReactiveHealthIndicator(org.springframework.data.redis.connection.ReactiveRedisConnectionFactory connectionFactory)  
 - 
 - 
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 
 
 -