Browse Source

reduce min `dbengine anomaly rate every` 60s->30s (#12543)

Andrew Maguire 3 years ago
parent
commit
506756fa90
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ml/Config.cc

+ 1 - 1
ml/Config.cc

@@ -61,7 +61,7 @@ void Config::readMLConfig(void) {
     MinTrainSamples = clamp(MinTrainSamples, 1 * 3600u, 6 * 3600u);
     TrainEvery = clamp(TrainEvery, 1 * 3600u, 6 * 3600u);
 
-    DBEngineAnomalyRateEvery = clamp(DBEngineAnomalyRateEvery, 1 * 60u, 15 * 60u);
+    DBEngineAnomalyRateEvery = clamp(DBEngineAnomalyRateEvery, 1 * 30u, 15 * 60u);
 
     DiffN = clamp(DiffN, 0u, 1u);
     SmoothN = clamp(SmoothN, 0u, 5u);