portal

Landing page for your homelab
git clone https://git.woozle.org/neale/portal.git

commit
19c0652
parent
c1e9e0f
author
Neale Pickett
date
2023-03-13 10:39:48 -0600 MDT
List i/o stuff as the 4th parameter
1 files changed,  +1, -1
M web/stat.mjs
+1, -1
1@@ -69,7 +69,7 @@ class Chart {
2 
3     cpu() {
4         let cpu = this.stat.cpu()
5-        return [cpu.user, cpu.nice, cpu.sys, cpu.wait]
6+        return [cpu.user, cpu.nice, cpu.sys, cpu.wait + cpu.irq + cpu.softirq]
7     }
8 
9     clear() {