summaryrefslogtreecommitdiffstats
path: root/ml
diff options
context:
space:
mode:
authorShyam Sreevalsan <shyam@netdata.cloud>2022-06-06 15:46:53 +0300
committerGitHub <noreply@github.com>2022-06-06 15:46:53 +0300
commit554c9498ff16eb9bbe6b2b411ad61d000bc407bd (patch)
treeab8b4cf67903e8537410b51a0b742498437ada72 /ml
parent524fc560633a0d1f9077aa93b9d91992ee987e6e (diff)
Update default value for "host anomaly rate threshold" (#13075)
Diffstat (limited to 'ml')
-rw-r--r--ml/Config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ml/Config.cc b/ml/Config.cc
index 951cc039f2..37d0bb29ea 100644
--- a/ml/Config.cc
+++ b/ml/Config.cc
@@ -42,7 +42,7 @@ void Config::readMLConfig(void) {
unsigned MaxKMeansIters = config_get_number(ConfigSectionML, "maximum number of k-means iterations", 1000);
double DimensionAnomalyScoreThreshold = config_get_float(ConfigSectionML, "dimension anomaly score threshold", 0.99);
- double HostAnomalyRateThreshold = config_get_float(ConfigSectionML, "host anomaly rate threshold", 0.01);
+ double HostAnomalyRateThreshold = config_get_float(ConfigSectionML, "host anomaly rate threshold", 0.02);
double ADMinWindowSize = config_get_float(ConfigSectionML, "minimum window size", 30);
double ADMaxWindowSize = config_get_float(ConfigSectionML, "maximum window size", 600);