From 904210234ac7b2329e1d614951faf935af18758d Mon Sep 17 00:00:00 2001 From: vkalintiris Date: Thu, 16 Jun 2022 12:50:18 +0300 Subject: Add cargo/rustc/bazel/buck to apps_groups.conf (#13143) --- collectors/apps.plugin/apps_groups.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3 From 075629bbc34b47c0d2e5561d392f5ed46f0cdc9b Mon Sep 17 00:00:00 2001 From: Andrew Maguire Date: Thu, 16 Jun 2022 11:02:53 +0100 Subject: revert to default of `host anomaly rate threshold=0.01` (#13150) --- ml/Config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml/Config.cc b/ml/Config.cc index 37d0bb29ea..951cc039f2 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); -- cgit v1.2.3