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

feat: console出力
This commit is contained in:
n1lsqn 2023-11-13 21:42:21 +09:00 committed by GitHub
commit a0374b786a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,7 @@ 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) {