use new endpoint status model
This commit is contained in:
@ -1,10 +1,25 @@
|
||||
import { Status } from "../status";
|
||||
|
||||
export interface CachedEndpointStatus extends Cache, EndpointStatus {}
|
||||
export interface CachedEndpointStatus extends Cache, EndpointStatus {
|
||||
/**
|
||||
* The endpoint statuses.
|
||||
*/
|
||||
endpoints: EndpointStatus[];
|
||||
}
|
||||
|
||||
type EndpointStatus = {
|
||||
/**
|
||||
* The cached endpoint status.
|
||||
* The name of the service.
|
||||
*/
|
||||
endpoints: Record<string, Status>;
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* The hostname of the service.
|
||||
*/
|
||||
hostname: string;
|
||||
|
||||
/**
|
||||
* The status of the service.
|
||||
*/
|
||||
status: Status;
|
||||
};
|
||||
|
Reference in New Issue
Block a user