bug
The `values()` array orders the two new counters as `[..., sweep_bytes_reclaimed, sweep_blobs_removed]`, but the `COUNTERS` table at line 33-58 lists them as `[..., sweep_blobs_removed_total,… The `values()` array orders the two new counters as `[..., sweep_bytes_reclaimed, sweep_blobs_removed]`, but the `COUNTERS` table at line 33-58 lists them as `[..., sweep_blobs_removed_total, sweep_bytes_reclaimed_total]`. `render()` pairs them positionally, so Prometheus sees blobs_removed reporting the bytes total and bytes_reclaimed reporting the blob count — exactly the swap the "Keeping the two side by side" comment is supposed to prevent.
services/proxy/src/metrics.rs:88-95
Evidence quote
Not recorded
Suggested fix
Not recorded