Updates and add start of WFC doc

This commit is contained in:
Bryan Ashby
2022-05-01 17:40:31 -06:00
parent dd7d24f22e
commit 44505f664a
4 changed files with 45 additions and 10 deletions

View File

@@ -380,8 +380,8 @@ class StatLog {
const loadStats = {
// Not avail on BSD, yet.
average : _.get(sysInfo, 'currentLoad.avgLoad', 0).toFixed(2),
current : _.get(sysInfo, 'currentLoad.currentLoad', 0).toFixed(2),
average : parseFloat(_.get(sysInfo, 'currentLoad.avgLoad', 0).toFixed(2)),
current : parseFloat(_.get(sysInfo, 'currentLoad.currentLoad', 0).toFixed(2)),
};
this.setNonPersistentSystemStat(SysProps.SystemLoadStats, loadStats);