Skip to content

Commit 22ebd10

Browse files
authored
ref(flag): Add flag for performance landing widgets (#26168)
* ref(flag): Add flag for performance landing widgets A flag we can put potential improvements to the landing page behind.
1 parent 418ae8a commit 22ebd10

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -951,6 +951,8 @@ def create_partitioned_queues(name):
951951
"organizations:performance-ops-breakdown": False,
952952
# Enable views for tag explorer
953953
"organizations:performance-tag-explorer": False,
954+
# Enable landing improvements for performance
955+
"organizations:performance-landing-widgets": False,
954956
# Enable the new Related Events feature
955957
"organizations:related-events": False,
956958
# Enable usage of external relays, for use with Relay. See

src/sentry/features/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@
132132
default_manager.add(
133133
"organizations:project-transaction-threshold", OrganizationFeature, True # NOQA
134134
)
135+
default_manager.add("organizations:performance-landing-widgets", OrganizationFeature, True) # NOQA
136+
135137
# NOTE: Don't add features down here! Add them to their specific group and sort
136138
# them alphabetically! The order features are registered is not important.
137139

0 commit comments

Comments
 (0)