Class CouchbaseHealthIndicator
java.lang.Object
org.springframework.boot.actuate.health.AbstractHealthIndicator
org.springframework.boot.actuate.couchbase.CouchbaseHealthIndicator
- All Implemented Interfaces:
HealthContributor
,HealthIndicator
HealthIndicator
for Couchbase.- Since:
- 2.0.0
- Author:
- EddĂș MelĂ©ndez, Stephane Nicoll
-
Constructor Summary
ConstructorDescriptionCouchbaseHealthIndicator
(com.couchbase.client.java.Cluster cluster) Create an indicator with the specifiedCluster
. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
doHealthCheck
(Health.Builder builder) Actual health check logic.Methods inherited from class org.springframework.boot.actuate.health.AbstractHealthIndicator
health
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.boot.actuate.health.HealthIndicator
getHealth
-
Constructor Details
-
CouchbaseHealthIndicator
public CouchbaseHealthIndicator(com.couchbase.client.java.Cluster cluster) Create an indicator with the specifiedCluster
.- Parameters:
cluster
- the Couchbase Cluster- Since:
- 2.0.6
-
-
Method Details
-
doHealthCheck
Description copied from class:AbstractHealthIndicator
Actual health check logic.- Specified by:
doHealthCheck
in classAbstractHealthIndicator
- Parameters:
builder
- theHealth.Builder
to report health status and details- Throws:
Exception
- anyException
that should create aStatus.DOWN
system status.
-