Skip to content

Commit 8ca2fbf

Browse files
authored
ref(perf): add a feature flag for the new span schema (#83532)
This feature flag will control whether the performance UI uses the new span schema or the legacy one. Closes getsentry/team-performance#54.
1 parent 92bb06d commit 8ca2fbf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/sentry/features/temporary.py

+2
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ def register_temporary_features(manager: FeatureManager):
266266
manager.add("organizations:performance-metrics-backed-transaction-summary", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
267267
# Enable the UI for displaying mobile performance score
268268
manager.add("organizations:performance-mobile-perf-score-ui", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
269+
# Use the new OTel-influenced span schema across the performance product
270+
manager.add("organizations:performance-new-span-schema", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
269271
# Enable new trends
270272
manager.add("organizations:performance-new-trends", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
271273
# Enable updated landing page widget designs

0 commit comments

Comments
 (0)