Skip to content

Commit 39f44c2

Browse files
authored
feat(perf-vitals): Add INP feature flag (#39029)
### Summary We may want to add interaction transactions for INP so we should be putting INP behind a feature flag in case this requires more UI features.
1 parent c6996bd commit 39f44c2

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,6 +1126,8 @@ def create_partitioned_queues(name):
11261126
"organizations:performance-span-tree-autoscroll": False,
11271127
# Enable transaction name only search
11281128
"organizations:performance-transaction-name-only-search": False,
1129+
# Enable showing INP web vital in default views
1130+
"organizations:performance-vitals-inp": False,
11291131
# Enable the new Related Events feature
11301132
"organizations:related-events": False,
11311133
# Enable populating suggested assignees with release committers

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
default_manager.add("organizations:performance-suspect-spans-view", OrganizationFeature, True)
124124
default_manager.add("organizations:performance-transaction-name-only-search", OrganizationFeature, True)
125125
default_manager.add("organizations:performance-use-metrics", OrganizationFeature, True)
126+
default_manager.add("organizations:performance-vitals-inp", OrganizationFeature, True)
126127
default_manager.add("organizations:profiling", OrganizationFeature)
127128
default_manager.add("organizations:project-event-date-limit", OrganizationFeature, True)
128129
default_manager.add("organizations:related-events", OrganizationFeature)

0 commit comments

Comments
 (0)