Skip to content

feat(perf-vitals): Add INP feature flag #39029

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1126,6 +1126,8 @@ def create_partitioned_queues(name):
"organizations:performance-span-tree-autoscroll": False,
# Enable transaction name only search
"organizations:performance-transaction-name-only-search": False,
# Enable showing INP web vital in default views
"organizations:performance-vitals-inp": False,
# Enable the new Related Events feature
"organizations:related-events": False,
# Enable populating suggested assignees with release committers
Expand Down
1 change: 1 addition & 0 deletions src/sentry/features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
default_manager.add("organizations:performance-suspect-spans-view", OrganizationFeature, True)
default_manager.add("organizations:performance-transaction-name-only-search", OrganizationFeature, True)
default_manager.add("organizations:performance-use-metrics", OrganizationFeature, True)
default_manager.add("organizations:performance-vitals-inp", OrganizationFeature, True)
default_manager.add("organizations:profiling", OrganizationFeature)
default_manager.add("organizations:project-event-date-limit", OrganizationFeature, True)
default_manager.add("organizations:related-events", OrganizationFeature)
Expand Down