Merge claude/2
This commit is contained in:
commit
b04c2e242f
@ -211,9 +211,18 @@ class SystemMetricPage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Plain-language description of what the page shows, per metric.
|
||||||
_subline() {
|
_subline() {
|
||||||
// Stub — populated more fully once data lands (sample count + tier).
|
const descs = {
|
||||||
return 'Live · binary ring backed';
|
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.';
|
||||||
}
|
}
|
||||||
|
|
||||||
async _loadRange() {
|
async _loadRange() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user