List i/o stuff as the 4th parameter

This commit is contained in:
Neale Pickett 2023-03-13 10:39:48 -06:00
parent c1e9e0fc0d
commit 19c0652ab8
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class Chart {
cpu() {
let cpu = this.stat.cpu()
return [cpu.user, cpu.nice, cpu.sys, cpu.wait]
return [cpu.user, cpu.nice, cpu.sys, cpu.wait + cpu.irq + cpu.softirq]
}
clear() {