You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The calculation seems to be wrong, because os.loadavg()Returns an array containing the 1, 5, and 15 minute load averages. see https://nodejs.org/api/os.html#osloadavg therefore it does not make sense to divide these average load numbers by the count of cpu cores os.loadavg().map(function (x) { return x / util.cores(); });
The text was updated successfully, but these errors were encountered:
Describe the bug
systeminformation/lib/cpu.js
Lines 1583 to 1584 in bb006e4
The calculation seems to be wrong, because
os.loadavg()
Returns an array containing the 1, 5, and 15 minute load averages.
see https://nodejs.org/api/os.html#osloadavg therefore it does not make sense to divide these average load numbers by the count of cpu coresos.loadavg().map(function (x) { return x / util.cores(); });
The text was updated successfully, but these errors were encountered: