Skip to content
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

feat(feature-flag): Add organization:metrics-performance-ui flag [INGEST-572] #29944

Merged
merged 3 commits into from
Nov 11, 2021
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
4 changes: 3 additions & 1 deletion src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -960,13 +960,15 @@ def create_partitioned_queues(name):
# sentry at the moment.
"organizations:issue-search-use-cdc-primary": False,
"organizations:issue-search-use-cdc-secondary": False,
# Enable the new Metrics page
# Enable metrics widget (prototype) on Dashboards
"organizations:metrics": False,
# Automatically extract metrics during ingestion.
#
# XXX(ja): DO NOT ENABLE UNTIL THIS NOTICE IS GONE. Relay experiences
# gradual slowdown when this is enabled for too many projects.
"organizations:metrics-extraction": False,
# Enable switch metrics button on Performance, allowing switch to unsampled transaction metrics
"organizations:metrics-performance-ui": False,
# True if the metrics backend should be checked against the sessions backend
"organizations:release-health-check-metrics": False,
# Enable metric aggregate in metric alert rule builder
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 @@ -107,6 +107,7 @@
default_manager.add("organizations:metric-alert-builder-aggregate", OrganizationFeature)
default_manager.add("organizations:metrics", OrganizationFeature, True)
default_manager.add("organizations:metrics-extraction", OrganizationFeature, True)
default_manager.add("organizations:metrics-performance-ui", OrganizationFeature, True)
default_manager.add("organizations:release-health-check-metrics", OrganizationFeature, True)
default_manager.add("organizations:minute-resolution-sessions", OrganizationFeature)
default_manager.add("organizations:mobile-screenshots", OrganizationFeature, True)
Expand Down