Modifier and Type | Class and Description |
---|---|
class |
RabbitHealthIndicator
Simple implementation of a
HealthIndicator returning status information for the
RabbitMQ messaging system. |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
RabbitHealthIndicatorAutoConfiguration.rabbitHealthIndicator(Map<String,org.springframework.amqp.rabbit.core.RabbitTemplate> rabbitTemplates) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
CassandraHealthIndicatorAutoConfiguration.cassandraHealthIndicator(Map<String,org.springframework.data.cassandra.core.CassandraOperations> cassandraOperations) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
CouchbaseHealthIndicatorAutoConfiguration.couchbaseHealthIndicator(Map<String,com.couchbase.client.java.Cluster> clusters) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
ElasticSearchClientHealthIndicatorAutoConfiguration.elasticsearchHealthIndicator(Map<String,org.elasticsearch.client.Client> clients)
Deprecated.
|
HealthIndicator |
ElasticSearchJestHealthIndicatorAutoConfiguration.elasticsearchHealthIndicator(Map<String,io.searchbox.client.JestClient> clients)
Deprecated.
|
HealthIndicator |
ElasticSearchRestHealthIndicatorAutoConfiguration.elasticsearchRestHealthIndicator(Map<String,org.elasticsearch.client.RestClient> clients) |
Modifier and Type | Class and Description |
---|---|
class |
CompositeHealthIndicatorConfiguration<H extends HealthIndicator,S>
Base class for configurations that can combine source beans using a
CompositeHealthIndicator . |
Modifier and Type | Method and Description |
---|---|
protected HealthIndicator |
CompositeHealthIndicatorConfiguration.createHealthIndicator(Map<String,S> beans) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
InfluxDbHealthIndicatorAutoConfiguration.influxDbHealthIndicator(Map<String,org.influxdb.InfluxDB> influxDbs) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
DataSourceHealthIndicatorAutoConfiguration.dbHealthIndicator(Map<String,DataSource> dataSources) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
JmsHealthIndicatorAutoConfiguration.jmsHealthIndicator(Map<String,ConnectionFactory> connectionFactories) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
LdapHealthIndicatorAutoConfiguration.ldapHealthIndicator(Map<String,org.springframework.ldap.core.LdapOperations> ldapOperations) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
MailHealthIndicatorAutoConfiguration.mailHealthIndicator(Map<String,JavaMailSenderImpl> mailSenders) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
MongoHealthIndicatorAutoConfiguration.mongoHealthIndicator(Map<String,org.springframework.data.mongodb.core.MongoTemplate> mongoTemplates) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
Neo4jHealthIndicatorAutoConfiguration.neo4jHealthIndicator(Map<String,org.neo4j.ogm.session.SessionFactory> sessionFactories) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
RedisHealthIndicatorAutoConfiguration.redisHealthIndicator(Map<String,org.springframework.data.redis.connection.RedisConnectionFactory> redisConnectionFactories) |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
SolrHealthIndicatorAutoConfiguration.solrHealthIndicator(Map<String,org.apache.solr.client.solrj.SolrClient> solrClients) |
Modifier and Type | Class and Description |
---|---|
class |
CassandraHealthIndicator
Simple implementation of a
HealthIndicator returning status information for
Cassandra data stores. |
Modifier and Type | Class and Description |
---|---|
class |
CouchbaseHealthIndicator
HealthIndicator for Couchbase. |
Modifier and Type | Class and Description |
---|---|
class |
ElasticsearchHealthIndicator
Deprecated.
since 2.2.0 as org.elasticsearch.client:transport has been
deprecated upstream
|
class |
ElasticsearchJestHealthIndicator
HealthIndicator for Elasticsearch using a JestClient . |
class |
ElasticsearchRestHealthIndicator
HealthIndicator for an Elasticsearch cluster using a RestClient . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractHealthIndicator
Base
HealthIndicator implementations that encapsulates creation of
Health instance and error handling. |
class |
ApplicationHealthIndicator
Default implementation of
HealthIndicator that returns Status.UP . |
class |
CompositeHealthIndicator
HealthIndicator that returns health indications from all registered delegates. |
Modifier and Type | Method and Description |
---|---|
HealthIndicator |
DefaultHealthIndicatorRegistry.get(String name) |
HealthIndicator |
HealthIndicatorRegistry.get(String name)
Returns the
HealthIndicator registered with the given name . |
HealthIndicator |
DefaultHealthIndicatorRegistry.unregister(String name) |
HealthIndicator |
HealthIndicatorRegistry.unregister(String name)
Unregisters the
HealthIndicator previously registered with the given
name . |
Modifier and Type | Method and Description |
---|---|
Map<String,HealthIndicator> |
DefaultHealthIndicatorRegistry.getAll() |
Map<String,HealthIndicator> |
HealthIndicatorRegistry.getAll()
Returns a snapshot of the registered health indicators and their names.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultHealthIndicatorRegistry.register(String name,
HealthIndicator healthIndicator) |
void |
HealthIndicatorRegistry.register(String name,
HealthIndicator healthIndicator)
Registers the given
HealthIndicator , associating it with the given
name . |
Modifier and Type | Method and Description |
---|---|
HealthIndicatorRegistry |
HealthIndicatorRegistryFactory.createHealthIndicatorRegistry(Map<String,HealthIndicator> healthIndicators)
Create a
HealthIndicatorRegistry based on the specified health indicators. |
ReactiveHealthIndicatorRegistry |
ReactiveHealthIndicatorRegistryFactory.createReactiveHealthIndicatorRegistry(Map<String,ReactiveHealthIndicator> reactiveHealthIndicators,
Map<String,HealthIndicator> healthIndicators)
Create a
ReactiveHealthIndicatorRegistry based on the specified health
indicators. |
protected <T extends HealthIndicatorRegistry> |
HealthIndicatorRegistryFactory.initialize(T registry,
Map<String,HealthIndicator> healthIndicators) |
protected <T extends ReactiveHealthIndicatorRegistry> |
ReactiveHealthIndicatorRegistryFactory.initialize(T registry,
Map<String,ReactiveHealthIndicator> reactiveHealthIndicators,
Map<String,HealthIndicator> healthIndicators) |
Constructor and Description |
---|
HealthEndpoint(HealthIndicator healthIndicator)
Create a new
HealthEndpoint instance that will use the given
healthIndicator to generate its response. |
HealthIndicatorReactiveAdapter(HealthIndicator delegate) |
Constructor and Description |
---|
CompositeHealthIndicator(HealthAggregator healthAggregator,
Map<String,HealthIndicator> indicators)
Create a new
CompositeHealthIndicator from the specified indicators. |
DefaultHealthIndicatorRegistry(Map<String,HealthIndicator> healthIndicators)
Create a new
DefaultHealthIndicatorRegistry from the specified indicators. |
Modifier and Type | Class and Description |
---|---|
class |
InfluxDbHealthIndicator
HealthIndicator for InfluxDB. |
Modifier and Type | Class and Description |
---|---|
class |
DataSourceHealthIndicator
HealthIndicator that tests the status of a DataSource and optionally
runs a test query. |
Modifier and Type | Class and Description |
---|---|
class |
JmsHealthIndicator
HealthIndicator for a JMS ConnectionFactory . |
Modifier and Type | Class and Description |
---|---|
class |
LdapHealthIndicator
HealthIndicator for configured LDAP server(s). |
Modifier and Type | Class and Description |
---|---|
class |
MailHealthIndicator
HealthIndicator for configured smtp server(s). |
Modifier and Type | Class and Description |
---|---|
class |
MongoHealthIndicator
Simple implementation of a
HealthIndicator returning status information for
Mongo data stores. |
Modifier and Type | Class and Description |
---|---|
class |
Neo4jHealthIndicator
HealthIndicator that tests the status of a Neo4j by executing a Cypher
statement. |
Modifier and Type | Class and Description |
---|---|
class |
RedisHealthIndicator
Simple implementation of a
HealthIndicator returning status information for
Redis data stores. |
Modifier and Type | Class and Description |
---|---|
class |
SolrHealthIndicator
HealthIndicator for Apache Solr. |
Modifier and Type | Class and Description |
---|---|
class |
DiskSpaceHealthIndicator
A
HealthIndicator that checks available disk space and reports a status of
Status.DOWN when it drops below a configurable threshold. |
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.