类 CouchbaseReactiveHealthIndicator
java.lang.Object
org.springframework.boot.actuate.health.AbstractReactiveHealthIndicator
org.springframework.boot.actuate.couchbase.CouchbaseReactiveHealthIndicator
- 所有已实现的接口:
ReactiveHealthContributor
,ReactiveHealthIndicator
A
ReactiveHealthIndicator
for Couchbase.- 从以下版本开始:
- 2.1.0
- 作者:
- Mikalai Lushchytski, Stephane Nicoll
-
构造器概要
构造器构造器说明CouchbaseReactiveHealthIndicator
(com.couchbase.client.java.Cluster cluster) Create a newCouchbaseReactiveHealthIndicator
instance. -
方法概要
修饰符和类型方法说明protected reactor.core.publisher.Mono
<Health> doHealthCheck
(Health.Builder builder) Actual health check logic.从类继承的方法 org.springframework.boot.actuate.health.AbstractReactiveHealthIndicator
health
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 org.springframework.boot.actuate.health.ReactiveHealthIndicator
getHealth
-
构造器详细资料
-
CouchbaseReactiveHealthIndicator
public CouchbaseReactiveHealthIndicator(com.couchbase.client.java.Cluster cluster) Create a newCouchbaseReactiveHealthIndicator
instance.- 参数:
cluster
- the Couchbase cluster
-
-
方法详细资料
-
doHealthCheck
从类复制的说明:AbstractReactiveHealthIndicator
Actual health check logic. If an error occurs in the pipeline, it will be handled automatically.- 指定者:
doHealthCheck
在类中AbstractReactiveHealthIndicator
- 参数:
builder
- theHealth.Builder
to report health status and details- 返回:
- a
Mono
that provides theHealth
-