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
|
{
"vmpage_faults": {
"title": "Page faults on {{HOST}}",
"type": "stacked",
"legend": {
"minflt": {
"name": "Minor",
"color": "0000f0"
},
"majflt": {
"name": "Major",
"color": "f00000"
}
},
"legend_format": "%5.1lf%s"
},
"vmpage_io": {
"title": "Page IO ({{TI}}) on {{HOST}}",
"type": "io",
"legend": {
"in": {
"name": "Incoming",
"color": "0000ff"
},
"out": {
"name": "Outgoing",
"color": "00b000"
}
},
"legend_format": "%5.1lf%s"
},
"vmpage_number": {
"title": "Pages on {{HOST}}",
"type": "stacked",
"legend_format": "%5.1lf%s"
}
}
|