Skip to content

Instantly share code, notes, and snippets.

@buroz
Created September 10, 2019 08:55
Show Gist options
  • Save buroz/e48861668ff70d0a4748d8d2024cbf0f to your computer and use it in GitHub Desktop.
Save buroz/e48861668ff70d0a4748d8d2024cbf0f to your computer and use it in GitHub Desktop.
"use strict";
const os = require("os");
const delaySeconds = 1;
const decimals = 3;
(function loop() {
console.log("CPU load is " + cpuLoad());
setTimeout(loop, delaySeconds * 1000);
})();
function cpuLoad() {
let cpuLoad = os.loadavg()[0] * 100;
return cpuLoad.toFixed(decimals);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment