Package | Description |
---|---|
ratpack.health |
Health checks report on the status of key components in the system and are generally used for monitoring and reporting.
|
Modifier and Type | Method and Description |
---|---|
static HealthCheck |
HealthCheck.of(String name,
Function<? super Registry,? extends Promise<HealthCheck.Result>> func)
Convenience factory for health check implementations.
|
Modifier and Type | Method and Description |
---|---|
static Promise<HealthCheckResults> |
HealthCheck.checkAll(Registry registry,
Iterable<? extends HealthCheck> healthChecks)
Execute health checks.
|
static Promise<HealthCheckResults> |
HealthCheck.checkAll(Registry registry,
Throttle throttle,
Iterable<? extends HealthCheck> healthChecks)
Execute health checks.
|