Class CassandraDriverHealthIndicator
java.lang.Object
org.springframework.boot.actuate.health.AbstractHealthIndicator
org.springframework.boot.actuate.cassandra.CassandraDriverHealthIndicator
- All Implemented Interfaces:
HealthContributor
,HealthIndicator
Simple implementation of a
HealthIndicator
returning status information for
Cassandra data stores.- Since:
- 2.4.0
- Author:
- Alexandre Dutra, Tomasz Lelek
-
Constructor Summary
ConstructorDescriptionCassandraDriverHealthIndicator
(com.datastax.oss.driver.api.core.CqlSession session) Create a newCassandraDriverHealthIndicator
instance. -
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
-
CassandraDriverHealthIndicator
public CassandraDriverHealthIndicator(com.datastax.oss.driver.api.core.CqlSession session) Create a newCassandraDriverHealthIndicator
instance.- Parameters:
session
- theCqlSession
.
-
-
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.
-