Skip to content

Commit 554adec

Browse files
authored
feat(browser-starfish): register resource module ui flag (#59133)
This flag will be used to enable/disable the resource module UI
1 parent 5f42131 commit 554adec

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
@@ -1707,6 +1707,8 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
17071707
"organizations:streamline-targeting-context": False,
17081708
# Enable the new experimental starfish view
17091709
"organizations:starfish-view": False,
1710+
# Enables the resource module ui
1711+
"organizations:starfish-browser-resource-module-ui": False,
17101712
# Enable the aggregate span waterfall view
17111713
"organizations:starfish-aggregate-span-waterfall": False,
17121714
# Enable starfish endpoint that's used for regressing testing purposes

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@
215215
default_manager.add("organizations:sdk-crash-detection", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
216216
default_manager.add("organizations:stacktrace-processing-caching", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
217217
default_manager.add("organizations:starfish-view", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
218+
default_manager.add("organizations:starfish-browser-resource-module-ui", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
218219
default_manager.add("organizations:starfish-aggregate-span-waterfall", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
219220
default_manager.add("organizations:starfish-test-endpoint", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
220221
default_manager.add("organizations:starfish-wsv-chart-dropdown", OrganizationFeature, FeatureHandlerStrategy.REMOTE)

0 commit comments

Comments
 (0)