Skip to content

Commit e220862

Browse files
shellmayrandrewshie-sentry
authored andcommitted
feat(nextjs-insights): fixed thresholds for p95 durations (#92189)
1 parent a4c47a4 commit e220862

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

static/app/views/insights/pages/platform/shared/pagesTable.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ const errorRateColorThreshold = {
5656
warning: 0.05,
5757
} as const;
5858

59-
const getP95Threshold = (avg: number) => {
59+
const getP95Threshold = (_avg: number) => {
6060
return {
61-
error: avg * 3,
62-
warning: avg * 2,
61+
error: 4000,
62+
warning: 2500,
6363
};
6464
};
6565

0 commit comments

Comments
 (0)