blob: c8397ac52db6286fb7f6a3dd270b9a9e09da1e18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
const getTargetsResponse = {
"code": 200,
"message": "success",
"result": {
"quick01": {
"total_memory": 3773.94921875,
"total_cpu": 24.433999999999997
},
"quick02": {
"total_memory": 1546.80078125,
"total_cpu": 76.94800000000001
},
"quick03": {
"total_memory": 1556.7578125,
"total_cpu": 79.413
},
"custom01": {
"total_memory": 0,
"total_cpu": 0
},
"custom02": {
"total_memory": 0,
"total_cpu": 0
}
}
}
export { getTargetsResponse }
|