From 6920f5f4c6856e1371654599824cb292581eef2e Mon Sep 17 00:00:00 2001 From: Catherine Lee <55311782+c298lee@users.noreply.github.com> Date: Tue, 18 Jun 2024 14:20:42 -0400 Subject: [PATCH] chore(replay): Feature flag for replay web vitals (#72951) To be used in https://github.com/getsentry/sentry/pull/72949 --- src/sentry/features/temporary.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index a1ec3c59e7764..05e5dfe557b22 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -378,6 +378,8 @@ def register_temporary_features(manager: FeatureManager): manager.add("organizations:session-replay-slack-new-issue", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) # Enable core Session Replay link in the sidebar manager.add("organizations:session-replay-ui", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, default=True) + # Enable replay web vital breadcrumbs + manager.add("organizations:session-replay-web-vitals", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, default=False) # Lets organizations manage grouping configs manager.add("organizations:set-grouping-config", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) # Enable the UI for updated terms of service