feat: add metrics on endpointlist

This commit is contained in:
Qiuxia Fan
2022-01-23 21:48:23 +08:00
parent 877c8ec91c
commit bbb269a665
5 changed files with 76 additions and 13 deletions

View File

@@ -31,3 +31,9 @@ export type Instance = {
instanceUUID: string;
attributes: { name: string; value: string }[];
};
export type Endpoint = {
id: string;
label: string;
value: string;
};