fix: 出力削除

This commit is contained in:
n1lsqn 2023-11-13 22:29:46 +09:00
parent 6f42ee0b92
commit b0d739b26e

View file

@ -38,6 +38,7 @@ export default class extends Module {
@autobind
private check() {
const average = (arr) => arr.reduce((a, b) => a + b) / arr.length;
const cpuPercentages = this.statsLogs.map(s => s && (s.cpu_usage || s.cpu) * 100 || 0);
const cpuPercentage = average(cpuPercentages);
if (cpuPercentage >= 70) {