We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
false
1 parent f37a36f commit 461d7a4Copy full SHA for 461d7a4
Experiments/Experiments/DefaultFeatureFlagService.swift
@@ -51,6 +51,14 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
51
return buildConfig == .localDeveloper || buildConfig == .alpha
52
case .productsOnboarding:
53
54
+ case .performanceMonitoring,
55
+ .performanceMonitoringCoreData,
56
+ .performanceMonitoringFileIO,
57
+ .performanceMonitoringNetworking,
58
+ .performanceMonitoringViewController,
59
+ .performanceMonitoringUserInteraction:
60
+ // Disabled by default to avoid costs spikes, unless in internal testing builds.
61
+ return buildConfig == .alpha
62
default:
63
return true
64
}
0 commit comments