From ae29293d14e37bf22935caae25831cf214db6ea1 Mon Sep 17 00:00:00 2001 From: Simon Hellmayr Date: Fri, 23 May 2025 11:09:36 +0200 Subject: [PATCH] feat(nextjs-insights): fixed thresholds for p95 durations --- .../app/views/insights/pages/platform/shared/pagesTable.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/app/views/insights/pages/platform/shared/pagesTable.tsx b/static/app/views/insights/pages/platform/shared/pagesTable.tsx index a4837290e2e45b..cb44e2f2f16085 100644 --- a/static/app/views/insights/pages/platform/shared/pagesTable.tsx +++ b/static/app/views/insights/pages/platform/shared/pagesTable.tsx @@ -56,10 +56,10 @@ const errorRateColorThreshold = { warning: 0.05, } as const; -const getP95Threshold = (avg: number) => { +const getP95Threshold = (_avg: number) => { return { - error: avg * 3, - warning: avg * 2, + error: 4000, + warning: 2500, }; };