global: v0.2 incoming

This commit is contained in:
nym21
2026-03-21 23:05:27 +01:00
parent 926721c482
commit ef491a3a66
26 changed files with 1718 additions and 16196 deletions

View File

@@ -101,13 +101,13 @@ function percentileSeries({ pattern, unit, title = "" }) {
}),
line({
series: pattern.pct90,
name: `${title} pct90`.trim(),
name: `${title} P90`.trim(),
color: stat.pct90,
unit,
}),
line({
series: pattern.pct75,
name: `${title} pct75`.trim(),
name: `${title} P75`.trim(),
color: stat.pct75,
unit,
}),
@@ -119,13 +119,13 @@ function percentileSeries({ pattern, unit, title = "" }) {
}),
line({
series: pattern.pct25,
name: `${title} pct25`.trim(),
name: `${title} P25`.trim(),
color: stat.pct25,
unit,
}),
line({
series: pattern.pct10,
name: `${title} pct10`.trim(),
name: `${title} P10`.trim(),
color: stat.pct10,
unit,
}),
@@ -533,7 +533,7 @@ export function sumsAndAveragesCumulativeWith({
{
name: "Cumulative",
title: title(`Cumulative ${metric}`),
bottom: series({ pattern: cumulative, name: "all-time", color }),
bottom: series({ pattern: cumulative, name: "All Time", color }),
},
];
}