Reorder the CPU utilization classes to be in a more logical order
(from hardware toward user) instead of alphabetical order.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
instances: {
cpu: [
...(show_idle ? ["idle"] : []),
- "interrupt",
"nice",
- "softirq",
- "steal",
- "system",
"user",
- "wait"
+ "wait",
+ "system",
+ "softirq",
+ "interrupt",
+ "steal"
]
},
options: {
},
cpu_wait: {
color: "ffb000",
- title: "Wait"
+ title: "Wait I/O"
}
}
}
instances: {
percent: [
...(show_idle ? ["idle"] : []),
- "interrupt",
"nice",
- "softirq",
- "steal",
- "system",
"user",
- "wait"
+ "wait",
+ "system",
+ "softirq",
+ "interrupt",
+ "steal"
]
},
options: {
},
percent_wait: {
color: "ffb000",
- title: "Wait"
+ title: "Wait I/O"
}
}
}