io.dropwizard.health.core.HealthStatusChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-health Show documentation
Show all versions of dropwizard-health Show documentation
Provides a health check implementation that performs ongoing monitoring of an application's dependencies and includes
an endpoint that can be called by a load balancer to determine if the application is healthy and thus able to retrieve
traffic.
The newest version!
package io.dropwizard.health.core;
public interface HealthStatusChecker {
default boolean isHealthy() {
return isHealthy(null);
}
boolean isHealthy(final String type);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy