@@ -138,10 +138,12 @@ def register_temporary_features(manager: FeatureManager) -> None:
138
138
manager .add ("organizations:escalating-metrics-backend" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
139
139
# Enable returning the migrated discover queries in explore saved queries
140
140
manager .add ("organizations:expose-migrated-discover-queries" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
141
- # Enables experimental MN+1 Detector
141
+ # Enable experimental MN+1 Detector
142
142
manager .add ("organizations:experimental-mn-plus-one-detector-rollout" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
143
- # Enabled experimental N+1 DB Detector
143
+ # Enable experimental N+1 DB Detector
144
144
manager .add ("organizations:experimental-n-plus-one-db-detector-rollout" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
145
+ # Enable experiemntal N+1 API Calls Detector
146
+ manager .add ("organizations:experimental-n-plus-one-api-detector-rollout" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
145
147
# Enable GenAI features such as Autofix and Issue Summary
146
148
manager .add ("organizations:gen-ai-features" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
147
149
# Enable the 'generate me a query' functionality on the explore > traces page
0 commit comments