Skip to content

Commit

Permalink
ref(perf): add a feature flag for the new span schema (#83532)
Browse files Browse the repository at this point in the history
This feature flag will control whether the performance UI uses the new
span schema or the legacy one.

Closes getsentry/team-performance#54.
  • Loading branch information
mjq authored Jan 15, 2025
1 parent 92bb06d commit 8ca2fbf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ def register_temporary_features(manager: FeatureManager):
manager.add("organizations:performance-metrics-backed-transaction-summary", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable the UI for displaying mobile performance score
manager.add("organizations:performance-mobile-perf-score-ui", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Use the new OTel-influenced span schema across the performance product
manager.add("organizations:performance-new-span-schema", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable new trends
manager.add("organizations:performance-new-trends", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable updated landing page widget designs
Expand Down

0 comments on commit 8ca2fbf

Please sign in to comment.