@@ -287,8 +287,6 @@ public static String getHostName() {
287
287
private final int appSecMaxStackTraceDepth ;
288
288
private final boolean appSecStandaloneEnabled ;
289
289
private final boolean apiSecurityEnabled ;
290
- private final float apiSecurityRequestSampleRate ;
291
-
292
290
private final IastDetectionMode iastDetectionMode ;
293
291
private final int iastMaxConcurrentRequests ;
294
292
private final int iastVulnerabilitiesPerRequest ;
@@ -1309,9 +1307,6 @@ PROFILING_DATADOG_PROFILER_ENABLED, isDatadogProfilerSafeInCurrentEnvironment())
1309
1307
apiSecurityEnabled =
1310
1308
configProvider .getBoolean (
1311
1309
API_SECURITY_ENABLED , DEFAULT_API_SECURITY_ENABLED , API_SECURITY_ENABLED_EXPERIMENTAL );
1312
- apiSecurityRequestSampleRate =
1313
- configProvider .getFloat (
1314
- API_SECURITY_REQUEST_SAMPLE_RATE , DEFAULT_API_SECURITY_REQUEST_SAMPLE_RATE );
1315
1310
1316
1311
iastDebugEnabled = configProvider .getBoolean (IAST_DEBUG_ENABLED , DEFAULT_IAST_DEBUG_ENABLED );
1317
1312
@@ -2610,10 +2605,6 @@ public boolean isApiSecurityEnabled() {
2610
2605
return apiSecurityEnabled ;
2611
2606
}
2612
2607
2613
- public float getApiSecurityRequestSampleRate () {
2614
- return apiSecurityRequestSampleRate ;
2615
- }
2616
-
2617
2608
public ProductActivation getIastActivation () {
2618
2609
return instrumenterConfig .getIastActivation ();
2619
2610
}
@@ -4582,8 +4573,6 @@ public String toString() {
4582
4573
+ appSecHttpBlockedTemplateJson
4583
4574
+ ", apiSecurityEnabled="
4584
4575
+ apiSecurityEnabled
4585
- + ", apiSecurityRequestSampleRate="
4586
- + apiSecurityRequestSampleRate
4587
4576
+ ", cwsEnabled="
4588
4577
+ cwsEnabled
4589
4578
+ ", cwsTlsRefresh="
0 commit comments