Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit 133c44b

Browse files
committed
rename metric
1 parent 3a58e44 commit 133c44b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/histogram.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function Histogram(events, { width, title, thresholds }) {
1313
res.push({ type: 'HTTP only', value: d.success_rate_http * 100 })
1414
}
1515
if (d.success_rate_http_head != null) {
16-
res.push({ type: 'HTTP only with HEAD support', value: d.success_rate_http_head * 100 })
16+
res.push({ type: 'HTTP only w/ HEAD', value: d.success_rate_http_head * 100 })
1717
}
1818
return res
1919
})

src/components/line-graph.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function LineGraph(events, { width, height, title, start, end } = {}) {
2121
...filteredEvents.map((event) => ({
2222
day: event.day,
2323
success_rate_http: event.success_rate_http,
24-
type: 'HTTP only with HEAD support',
24+
type: 'HTTP only w/ HEAD',
2525
})),
2626
]
2727

src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const nonZeroMinersOverTime = Object.entries(SparkMinerRsrSummaries).flatMap(
130130
0,
131131
)
132132
: null,
133-
type: 'HTTP only with HEAD support',
133+
type: 'HTTP only w/ HEAD',
134134
},
135135
],
136136
)

0 commit comments

Comments
 (0)