Update Excessive cpu load authored by Alex Wiens's avatar Alex Wiens
...@@ -14,3 +14,18 @@ ...@@ -14,3 +14,18 @@
* Possible cures/workarounds: * Possible cures/workarounds:
* checking parallelization settings * checking parallelization settings
```
Eingabe:
* Metrik cpu_load im node scope
* Metadatum numHwthreads
* Parameter threshold für einen core
Regel:
load_mean = cpu_load.mean('all')
load_threshold = job.numHwthreads * threshold
highload = load_mean > load_threshold
Ausgabe: highload ist True
```