We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f01446 commit 4f12b37Copy full SHA for 4f12b37
packages/tracing-internal/src/browser/web-vitals/onTTFB.ts
@@ -23,7 +23,8 @@ import { whenActivated } from './lib/whenActivated';
23
import type { MetricRatingThresholds, ReportOpts, TTFBReportCallback } from './types';
24
25
/** Thresholds for TTFB. See https://web.dev/articles/ttfb#what_is_a_good_ttfb_score */
26
-export const TTFBThresholds: MetricRatingThresholds = [800, 1800];
+// NOTE (Sentry): We use a lower threshold here than web-vitals
27
+export const TTFBThresholds: MetricRatingThresholds = [0, 1800];
28
29
/**
30
* Runs in the next task after the page is done loading and/or prerendering.
0 commit comments