@@ -198,14 +198,14 @@ def register_temporary_features(manager: FeatureManager):
198
198
manager .add ("organizations:ownership-size-limit-large" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
199
199
# Enable xlarge ownership rule file size limit
200
200
manager .add ("organizations:ownership-size-limit-xlarge" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
201
+ # Enable project admins to enable/disable performance detectors
202
+ manager .add ("organizations:performance-manage-detectors" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
201
203
# Enable mobile performance score calculation for transactions in relay
202
204
manager .add ("organizations:performance-calculate-mobile-perf-score-relay" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
203
205
# Enable performance change explorer panel on trends page
204
206
manager .add ("organizations:performance-change-explorer" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
205
207
# Enable interpolation of null data points in charts instead of zerofilling in performance
206
208
manager .add ("organizations:performance-chart-interpolation" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
207
- # Enable consecutive http performance issue type
208
- manager .add ("organizations:performance-consecutive-http-detector" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
209
209
# Enable Discover Saved Query dataset selector
210
210
manager .add ("organizations:performance-discover-dataset-selector" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
211
211
# Enable deprecate discover widget type
@@ -222,8 +222,6 @@ def register_temporary_features(manager: FeatureManager):
222
222
manager .add ("organizations:performance-issues-search" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , default = True , api_expose = False )
223
223
# Detect performance issues in the new standalone spans pipeline instead of on transactions
224
224
manager .add ("organizations:performance-issues-spans" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , default = False , api_expose = False )
225
- # Enable consecutive http performance issue type
226
- manager .add ("organizations:performance-large-http-payload-detector" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
227
225
# Enable internal view for bannerless MEP view
228
226
manager .add ("organizations:performance-mep-bannerless-ui" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
229
227
# Re-enable histograms for Metrics Enhanced Performance Views
0 commit comments