Uses of Interface
org.springframework.boot.actuate.health.HealthContributor
Package
Description
Actuator support for AMQP and RabbitMQ.
Auto-configuration for actuator AMQP concerns.
Auto-configuration for actuator Couchbase concerns.
Auto-configuration for actuator MongoDB concerns dependent on Spring Data.
Auto-configuration for actuator Redis concerns dependent on Spring Data.
Auto-configuration for actuator Elasticsearch concerns.
Auto-configuration for actuator Hazelcast concerns.
Auto-configuration for actuator health concerns.
Auto-configuration for actuator InfluxDB concerns.
Auto-configuration for actuator JDBC concerns.
Auto-configuration for actuator JMS concerns.
Auto-configuration for actuator LDAP concerns.
Auto-configuration for actuator JavaMail concerns.
Actuator support for application availability concerns.
Actuator support for Cassandra.
Actuator support for Couchbase.
Actuator support for Mongo dependent on Spring Data.
Actuator support for Redis dependent on Spring Data.
Actuator support for Elasticsearch.
Actuator support for Hazelcast.
Actuator health indicator and endpoints.
Actuator support for InfluxDB.
Actuator support for JDBC.
Actuator support for JMS.
Actuator support for LDAP.
Actuator support for JavaMail.
Actuator support for Neo4j.
Actuator support for system-related concerns.
-
Uses of HealthContributor in org.springframework.boot.actuate.amqp
Modifier and TypeClassDescriptionclass
Simple implementation of aHealthIndicator
returning status information for the RabbitMQ messaging system. -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.amqp
Modifier and TypeMethodDescriptionRabbitHealthContributorAutoConfiguration.rabbitHealthContributor
(Map<String, org.springframework.amqp.rabbit.core.RabbitTemplate> rabbitTemplates) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.couchbase
Modifier and TypeMethodDescriptionCouchbaseHealthContributorAutoConfiguration.couchbaseHealthContributor
(Map<String, com.couchbase.client.java.Cluster> clusters) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.data.mongo
Modifier and TypeMethodDescriptionMongoHealthContributorAutoConfiguration.mongoHealthContributor
(Map<String, org.springframework.data.mongodb.core.MongoTemplate> mongoTemplates) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.data.redis
Modifier and TypeMethodDescriptionRedisHealthContributorAutoConfiguration.redisHealthContributor
(Map<String, org.springframework.data.redis.connection.RedisConnectionFactory> redisConnectionFactories) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.elasticsearch
Modifier and TypeMethodDescriptionElasticsearchRestHealthContributorAutoConfiguration.elasticsearchHealthContributor
(Map<String, org.elasticsearch.client.RestClient> clients) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.hazelcast
Modifier and TypeMethodDescriptionHazelcastHealthContributorAutoConfiguration.hazelcastHealthContributor
(Map<String, com.hazelcast.core.HazelcastInstance> hazelcastInstances) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.health
Modifier and TypeMethodDescriptionprotected final HealthContributor
CompositeHealthContributorConfiguration.createComposite
(Map<String, B> beans) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.influx
Modifier and TypeMethodDescriptionInfluxDbHealthContributorAutoConfiguration.influxDbHealthContributor
(Map<String, org.influxdb.InfluxDB> influxDbs) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.jdbc
Modifier and TypeMethodDescriptionDataSourceHealthContributorAutoConfiguration.dbHealthContributor
(Map<String, DataSource> dataSources, DataSourceHealthIndicatorProperties dataSourceHealthIndicatorProperties) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.jms
Modifier and TypeMethodDescriptionJmsHealthContributorAutoConfiguration.jmsHealthContributor
(Map<String, ConnectionFactory> connectionFactories) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.ldap
Modifier and TypeMethodDescriptionLdapHealthContributorAutoConfiguration.ldapHealthContributor
(Map<String, org.springframework.ldap.core.LdapOperations> ldapOperations) -
Uses of HealthContributor in org.springframework.boot.actuate.autoconfigure.mail
Modifier and TypeMethodDescriptionMailHealthContributorAutoConfiguration.mailHealthContributor
(Map<String, JavaMailSenderImpl> mailSenders) -
Uses of HealthContributor in org.springframework.boot.actuate.availability
Modifier and TypeClassDescriptionclass
AHealthIndicator
that checks a specificAvailabilityState
of the application.class
AHealthIndicator
that checks theLivenessState
of the application.class
AHealthIndicator
that checks theReadinessState
of the application. -
Uses of HealthContributor in org.springframework.boot.actuate.cassandra
Modifier and TypeClassDescriptionclass
Simple implementation of aHealthIndicator
returning status information for Cassandra data stores. -
Uses of HealthContributor in org.springframework.boot.actuate.couchbase
-
Uses of HealthContributor in org.springframework.boot.actuate.data.mongo
Modifier and TypeClassDescriptionclass
Simple implementation of aHealthIndicator
returning status information for Mongo data stores. -
Uses of HealthContributor in org.springframework.boot.actuate.data.redis
Modifier and TypeClassDescriptionclass
Simple implementation of aHealthIndicator
returning status information for Redis data stores. -
Uses of HealthContributor in org.springframework.boot.actuate.elasticsearch
Modifier and TypeClassDescriptionclass
HealthIndicator
for an Elasticsearch cluster using aRestClient
. -
Uses of HealthContributor in org.springframework.boot.actuate.hazelcast
-
Uses of HealthContributor in org.springframework.boot.actuate.health
Modifier and TypeInterfaceDescriptioninterface
AHealthContributor
that is composed of otherHealthContributor
instances.interface
Strategy interface used to contributeHealth
to the results returned from theHealthEndpoint
.Modifier and TypeClassDescriptionclass
BaseHealthIndicator
implementations that encapsulates creation ofHealth
instance and error handling.class
Default implementation ofHealthIndicator
that returnsStatus.UP
.Modifier and TypeMethodDescriptionstatic ReactiveHealthContributor
ReactiveHealthContributor.adapt
(HealthContributor healthContributor) protected HealthComponent
HealthEndpoint.getHealth
(HealthContributor contributor, boolean includeDetails) protected HealthComponent
HealthEndpointWebExtension.getHealth
(HealthContributor contributor, boolean includeDetails) Modifier and TypeMethodDescriptionstatic CompositeHealthContributor
CompositeHealthContributor.fromMap
(Map<String, ? extends HealthContributor> map) Factory method that will create aCompositeHealthContributor
from the specified map.static <V> CompositeHealthContributor
CompositeHealthContributor.fromMap
(Map<String, V> map, Function<V, ? extends HealthContributor> valueAdapter) Factory method that will create aCompositeHealthContributor
from the specified map.ModifierConstructorDescriptionDefaultHealthContributorRegistry
(Map<String, HealthContributor> contributors) DefaultHealthContributorRegistry
(Map<String, HealthContributor> contributors, Function<String, String> nameFactory) -
Uses of HealthContributor in org.springframework.boot.actuate.influx
-
Uses of HealthContributor in org.springframework.boot.actuate.jdbc
Modifier and TypeClassDescriptionclass
HealthIndicator
that tests the status of aDataSource
and optionally runs a test query. -
Uses of HealthContributor in org.springframework.boot.actuate.jms
-
Uses of HealthContributor in org.springframework.boot.actuate.ldap
-
Uses of HealthContributor in org.springframework.boot.actuate.mail
-
Uses of HealthContributor in org.springframework.boot.actuate.neo4j
Modifier and TypeClassDescriptionclass
HealthIndicator
that tests the status of a Neo4j by executing a Cypher statement and extracting server and database information. -
Uses of HealthContributor in org.springframework.boot.actuate.system
Modifier and TypeClassDescriptionclass
AHealthIndicator
that checks available disk space and reports a status ofStatus.DOWN
when it drops below a configurable threshold.