fix performance reset bug

This commit is contained in:
Francis Cao
2026-03-05 10:23:00 -08:00
parent f6a6d2cc31
commit 1730d495e5
2 changed files with 12 additions and 2 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ async function clickhouseQuery(
const chart = await rawQuery<{ t: string; p50: number; p75: number; p95: number }[]>(
`
select
${getDateSQL('created_at', 'minute', timezone)} t,
${getDateSQL('created_at', unit, timezone)} t,
quantile(0.5)(${metric}) as p50,
quantile(0.75)(${metric}) as p75,
quantile(0.95)(${metric}) as p95