Compare commits

..

No commits in common. "b04c2e242f113dbeeaa8861089e8df14a2acfb52" and "6e7cf402369470509e5b82780669d63bf66992d2" have entirely different histories.

View File

@ -211,18 +211,9 @@ class SystemMetricPage {
}
}
// Plain-language description of what the page shows, per metric.
_subline() {
const descs = {
cpu: 'Processor load over time, across all cores.',
mem: 'Memory in use over time, as a share of total RAM.',
swap: 'Swap in use over time, as a share of total swap.',
disk: 'Root-filesystem usage over time.',
load1: 'System load average (1-minute) over time.',
net_rx: 'Inbound network throughput over time.',
net_tx: 'Outbound network throughput over time.',
};
return (this.metric && descs[this.metric.key]) || 'Live history over time.';
// Stub — populated more fully once data lands (sample count + tier).
return 'Live · binary ring backed';
}
async _loadRange() {