add a status instead of a boolean online / offline for the endpoint status
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m40s
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m40s
This commit is contained in:
@ -21,11 +21,17 @@ public final class CachedEndpointStatus implements Serializable {
|
||||
/**
|
||||
* The list of endpoints and their status.
|
||||
*/
|
||||
private final Map<String, Boolean> endpoints;
|
||||
private final Map<String, Status> endpoints;
|
||||
|
||||
/**
|
||||
* The unix timestamp of when this
|
||||
* server was cached, -1 if not cached.
|
||||
*/
|
||||
private long cached;
|
||||
|
||||
public enum Status {
|
||||
ONLINE,
|
||||
DEGRADED,
|
||||
OFFLINE
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user