summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Maguire <andrewm4894@gmail.com>2022-06-16 11:29:47 +0100
committerAndrew Maguire <andrewm4894@gmail.com>2022-06-16 11:29:47 +0100
commitf9a0806db2f428250470b1acffe0740a3a8b9c50 (patch)
tree3272967967be5cafa0cf017fb2351a60440f1f97
parent8ef31ae5e7c4a512272590bfbe09db6394327f97 (diff)
parent075629bbc34b47c0d2e5561d392f5ed46f0cdc9b (diff)
Merge branch 'master' into enable-ml-by-defaultenable-ml-by-default
-rw-r--r--collectors/apps.plugin/apps_groups.conf2
-rw-r--r--ml/Config.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/collectors/apps.plugin/apps_groups.conf b/collectors/apps.plugin/apps_groups.conf
index 1d1af4b70c..cbf3518bad 100644
--- a/collectors/apps.plugin/apps_groups.conf
+++ b/collectors/apps.plugin/apps_groups.conf
@@ -227,7 +227,7 @@ dnsdist: dnsdist
# installation / compilation / debugging
build: cc1 cc1plus as gcc* cppcheck ld make cmake automake autoconf autoreconf
-build: git gdb valgrind*
+build: cargo rustc bazel buck git gdb valgrind*
# -----------------------------------------------------------------------------
# antivirus
diff --git a/ml/Config.cc b/ml/Config.cc
index 882ca81ceb..4afa7c033b 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.02);
+ double HostAnomalyRateThreshold = config_get_float(ConfigSectionML, "host anomaly rate threshold", 0.01);
double ADMinWindowSize = config_get_float(ConfigSectionML, "minimum window size", 30);
double ADMaxWindowSize = config_get_float(ConfigSectionML, "maximum window size", 600);