Merge pull request #24 from n1lsqn/feat/issue#9

fix: 出力削除
This commit is contained in:
n1lsqn 2023-11-13 22:30:36 +09:00 committed by GitHub
commit 6e2a81fc76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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