Package | Description |
---|---|
org.springframework.boot.actuate.autoconfigure |
Auto-configuration for the actuator.
|
org.springframework.boot.actuate.endpoint |
Endpoints used to expose actuator information.
|
org.springframework.boot.actuate.health |
Actuator health indicators.
|
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 |
---|---|
HealthIndicator |
HealthIndicatorAutoConfiguration.CassandraHealthIndicatorConfiguration.cassandraHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.CouchbaseHealthIndicatorConfiguration.couchbaseHealthIndicator() |
protected HealthIndicator |
CompositeHealthIndicatorConfiguration.createHealthIndicator(Map<String,S> beans) |
HealthIndicator |
HealthIndicatorAutoConfiguration.DataSourcesHealthIndicatorConfiguration.dbHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.JmsHealthIndicatorConfiguration.jmsHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.LdapHealthIndicatorConfiguration.ldapHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.MailHealthIndicatorConfiguration.mailHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.MongoHealthIndicatorConfiguration.mongoHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.RabbitHealthIndicatorConfiguration.rabbitHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.RedisHealthIndicatorConfiguration.redisHealthIndicator() |
HealthIndicator |
HealthIndicatorAutoConfiguration.SolrHealthIndicatorConfiguration.solrHealthIndicator() |
Constructor and Description |
---|
EndpointAutoConfiguration(ObjectProvider<HealthAggregator> healthAggregator,
ObjectProvider<Map<String,HealthIndicator>> healthIndicators,
ObjectProvider<List<InfoContributor>> infoContributors,
ObjectProvider<Collection<PublicMetrics>> publicMetrics,
ObjectProvider<TraceRepository> traceRepository) |
Constructor and Description |
---|
HealthEndpoint(HealthAggregator healthAggregator,
Map<String,HealthIndicator> healthIndicators)
Create a new
HealthEndpoint instance. |
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 |
CassandraHealthIndicator
Simple implementation of a
HealthIndicator returning status information for
Cassandra data stores. |
class |
CompositeHealthIndicator
HealthIndicator that returns health indications from all registered delegates. |
class |
CouchbaseHealthIndicator
HealthIndicator for Couchbase. |
class |
DataSourceHealthIndicator
HealthIndicator that tests the status of a DataSource and optionally
runs a test query. |
class |
DiskSpaceHealthIndicator
A
HealthIndicator that checks available disk space and reports a status of
Status.DOWN when it drops below a configurable threshold. |
class |
ElasticsearchHealthIndicator
HealthIndicator for an Elasticsearch cluster. |
class |
ElasticsearchJestHealthIndicator
HealthIndicator for Elasticsearch using a JestClient . |
class |
JmsHealthIndicator
HealthIndicator for a JMS ConnectionFactory . |
class |
LdapHealthIndicator
HealthIndicator for configured LDAP server(s). |
class |
MailHealthIndicator
HealthIndicator for configured smtp server(s). |
class |
MongoHealthIndicator
Simple implementation of a
HealthIndicator returning status information for
Mongo data stores. |
class |
RabbitHealthIndicator
Simple implementation of a
HealthIndicator returning status information for the
RabbitMQ messaging system. |
class |
RedisHealthIndicator
Simple implementation of a
HealthIndicator returning status information for
Redis data stores. |
class |
SolrHealthIndicator
HealthIndicator for Apache Solr. |
Modifier and Type | Method and Description |
---|---|
void |
CompositeHealthIndicator.addHealthIndicator(String name,
HealthIndicator indicator) |
Constructor and Description |
---|
CompositeHealthIndicator(HealthAggregator healthAggregator,
Map<String,HealthIndicator> indicators)
Create a new
CompositeHealthIndicator from the specified indicators. |
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.