@cryptotaxi247 / netdata-1 / commits / 554c9498f

Update default value for "host anomaly rate threshold" (#13075)

Shyam Sreevalsan committed Jun 6, 2022 at 15:46 UTC 554c9498ff16eb9bbe6b2b411ad61d000bc407bd
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.01);
45 + double HostAnomalyRateThreshold = config_get_float(ConfigSectionML, "host anomaly rate threshold", 0.02);
46
47 double ADMinWindowSize = config_get_float(ConfigSectionML, "minimum window size", 30);
48 double ADMaxWindowSize = config_get_float(ConfigSectionML, "maximum window size", 600);