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 8af70e5 commit 7c7b4aaCopy full SHA for 7c7b4aa
Experiments/Experiments/DefaultFeatureFlagService.swift
@@ -41,6 +41,14 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
41
return buildConfig == .localDeveloper || buildConfig == .alpha
42
case .storeCreationMVP:
43
44
+ case .performanceMonitoring,
45
+ .performanceMonitoringCoreData,
46
+ .performanceMonitoringFileIO,
47
+ .performanceMonitoringNetworking,
48
+ .performanceMonitoringViewController,
49
+ .performanceMonitoringUserInteraction:
50
+ // Disabled by default to avoid costs spikes, unless in internal testing builds.
51
+ return buildConfig == .alpha
52
default:
53
return true
54
}
0 commit comments