Package | Description |
---|---|
org.springframework.boot.actuate.endpoint | |
org.springframework.boot.actuate.health |
Modifier and Type | Method and Description |
---|---|
Health |
HealthEndpoint.invoke()
Invoke all
HealthIndicator delegates and collect their health information. |
Modifier and Type | Method and Description |
---|---|
Health |
HealthAggregator.aggregate(Map<String,Health> healths)
Aggregate several given
Health instances into one. |
Health |
AbstractHealthAggregator.aggregate(Map<String,Health> healths) |
protected Health |
VanillaHealthIndicator.doHealthCheck() |
protected Health |
SolrHealthIndicator.doHealthCheck() |
protected Health |
RedisHealthIndicator.doHealthCheck() |
protected Health |
RabbitHealthIndicator.doHealthCheck() |
protected Health |
MongoHealthIndicator.doHealthCheck() |
protected Health |
DataSourceHealthIndicator.doHealthCheck() |
protected abstract Health |
AbstractHealthIndicator.doHealthCheck()
Actual health check logic.
|
static Health |
Health.down()
Create a new
Health instance with a Status.DOWN status. |
static Health |
Health.down(Exception ex)
Create a new
Health instance with an Status.DOWN status an the
specified exception details. |
Health |
HealthIndicator.health() |
Health |
CompositeHealthIndicator.health() |
Health |
AbstractHealthIndicator.health() |
static Health |
Health.outOfService()
Create a new
Health instance with an Status.OUT_OF_SERVICE status. |
static Health |
Health.status(Status status)
|
static Health |
Health.status(String statusCode)
Create a new
Health instance with a specific status code. |
static Health |
Health.unknown()
Create a new
Health instance with an Status.UNKNOWN status. |
static Health |
Health.up()
|
Health |
Health.withDetail(String key,
Object data)
Create a new
Health object from this one, containing an additional detail. |
Health |
Health.withException(Exception ex)
Create a new
Health object from this one, containing an additional
exception detail. |
Modifier and Type | Method and Description |
---|---|
Health |
HealthAggregator.aggregate(Map<String,Health> healths)
Aggregate several given
Health instances into one. |
Health |
AbstractHealthAggregator.aggregate(Map<String,Health> healths) |
Copyright © 2014 Pivotal Software, Inc.. All rights reserved.