Skip to content

Commit 8fc6953

Browse files
committed
Change the graph to the "percent relative from previous" kind
1 parent f7ec8b8 commit 8fc6953

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

site/frontend/src/pages/compare/compile/table/benchmark-detail.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ async function renderGraph() {
2828
stat: props.metric,
2929
start: getDateInPast(props.artifact),
3030
end: props.artifact.commit,
31-
kind: "raw" as GraphKind,
31+
// We want to be able to see noise "blips" vs. a previous artifact.
32+
// The "percent relative from previous commit" graph should be the best to
33+
// see these kinds of changes.
34+
kind: "percentrelative" as GraphKind,
3235
};
3336
const graphData = await GRAPH_RESOLVER.loadGraph(selector);
3437
renderPlots(graphData, selector, chartElement.value, {

0 commit comments

Comments
 (0)