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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{
"ceilometerInfoList": [
{
"name": "instance",
"type": "Gauge",
"unit": "instance",
"category": "compute",
"description": "Existence of instance"
},
{
"name": "instance:type",
"type": "Gauge",
"unit": "instance",
"category": "compute",
"description": "Existence of instance <type> (OpenStack types)"
},
{
"name": "memory",
"type": "Gauge",
"unit": "MB",
"category": "compute",
"description": "Volume of RAM allocated to the instance"
},
{
"name": "memory.usage",
"type": "Gauge",
"unit": "MB",
"category": "compute",
"description": "Volume of RAM used by the instance from the amount of its allocated memory"
},
{
"name": "memory.resident",
"type": "Gauge",
"unit": "MB",
"category": "compute",
"description": "Volume of RAM used by the instance on the physical machine"
},
{
"name": "cpu",
"type": "Cumulative",
"unit": "ns",
"category": "compute",
"description": "CPU time used"
},
{
"name": "cpu_util",
"type": "Gauge",
"unit": "%",
"category": "compute",
"description": "Average CPU utilization"
},
{
"name": "cpu.delta",
"type": "Delta",
"unit": "ns",
"category": "compute",
"description": "CPU time used since previous datapoint"
},
{
"name": "vcpus",
"type": "Gauge",
"unit": "ms",
"category": "compute",
"description": "Average disk latency"
}
]
}
|