Package com.codahale.metrics.health
Interface HealthCheckFilter
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface HealthCheckFilter
A filter used to determine whether or not a health check should be reported.
-
-
Field Summary
Fields Modifier and Type Field Description static HealthCheckFilterALLMatches all health checks, regardless of type or name.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(String name, HealthCheck healthCheck)Returnstrueif the health check matches the filter;falseotherwise.
-
-
-
Field Detail
-
ALL
static final HealthCheckFilter ALL
Matches all health checks, regardless of type or name.
-
-
Method Detail
-
matches
boolean matches(String name, HealthCheck healthCheck)
Returnstrueif the health check matches the filter;falseotherwise.- Parameters:
name- the health check's namehealthCheck- the health check- Returns:
trueif the health check matches the filter
-
-