1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Update systemLoadPercentage()

This commit is contained in:
billz 2019-10-15 10:11:51 +01:00
parent ab8648c3e5
commit dbc3ff4950

View File

@ -43,6 +43,7 @@ class System {
}
public function systemLoadPercentage() {
return floor(($this->loadAvg1Min() * 100) / $this->processorCount());
return intval(($this->loadAvg1Min() * 100) / $this->processorCount());
}
}