revert to default of `host anomaly rate threshold=0.01` (#13150)
Andrew Maguire committed
Jun 16, 2022 at 11:02 UTC
075629bbc34b47c0d2e5561d392f5ed46f0cdc9b
1 file changed
+1
-1
ml/Config.cc
+1
-1
@@ -42,7 +42,7 @@ void Config::readMLConfig(void) {
42
unsigned MaxKMeansIters = config_get_number(ConfigSectionML, "maximum number of k-means iterations", 1000);
43
44
double DimensionAnomalyScoreThreshold = config_get_float(ConfigSectionML, "dimension anomaly score threshold", 0.99);
45
- double HostAnomalyRateThreshold = config_get_float(ConfigSectionML, "host anomaly rate threshold", 0.02);
45
+ double HostAnomalyRateThreshold = config_get_float(ConfigSectionML, "host anomaly rate threshold", 0.01);
46
47
double ADMinWindowSize = config_get_float(ConfigSectionML, "minimum window size", 30);
48
double ADMaxWindowSize = config_get_float(ConfigSectionML, "maximum window size", 600);