HealthSupport.Builder |
HealthSupport.Builder.add(HealthCheck... healthChecks) |
Deprecated.
|
HealthSupport.Builder |
HealthSupport.Builder.addExcluded(String healthCheckName) |
Add a health check to a black list.
|
HealthSupport.Builder |
HealthSupport.Builder.addExcluded(Collection<String> names) |
Add health checks to a black list.
|
HealthSupport.Builder |
HealthSupport.Builder.addExcludedClass(Class<?> aClass) |
A class may be excluded from invoking health checks on it.
|
HealthSupport.Builder |
HealthSupport.Builder.addIncluded(String healthCheckName) |
Add a health check to a white list (in case HealthSupport.includeAll is set to false .
|
HealthSupport.Builder |
HealthSupport.Builder.addIncluded(Collection<String> names) |
Add health checks to a white list (in case HealthSupport.includeAll is set to false .
|
HealthSupport.Builder |
HealthSupport.Builder.addLiveness(Collection<HealthCheck> healthChecks) |
Add liveness health check(s).
|
HealthSupport.Builder |
HealthSupport.Builder.addLiveness(HealthCheck... healthChecks) |
Add liveness health check(s).
|
HealthSupport.Builder |
HealthSupport.Builder.addReadiness(Collection<HealthCheck> healthChecks) |
Add readiness health check(s).
|
HealthSupport.Builder |
HealthSupport.Builder.addReadiness(HealthCheck... healthChecks) |
Add readiness health check(s).
|
HealthSupport.Builder |
HealthSupport.Builder.backwardCompatible(boolean enabled) |
Deprecated.
|
static HealthSupport.Builder |
HealthSupport.builder() |
Get a builder to configure health support instance.
|
HealthSupport.Builder |
HealthSupport.Builder.config(Config config) |
Update this builder from configuration.
|
HealthSupport.Builder |
HealthSupport.Builder.crossOriginConfig(CrossOriginConfig crossOriginConfig) |
Set the CORS config from the specified CrossOriginConfig object.
|
HealthSupport.Builder |
HealthSupport.Builder.enabled(boolean enabled) |
HealthSupport can be disabled by invoking this method.
|
HealthSupport.Builder |
HealthSupport.Builder.timeout(long timeout,
TimeUnit unit) |
Configure overall timeout of health check call.
|
HealthSupport.Builder |
HealthSupport.Builder.webContext(String path) |
Path under which to register health check endpoint on the web server.
|