mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-25 09:00:25 +00:00
Merge pull request #1124 from BANKA2017/fix-function-used-memory
Fix: function usedMemory
This commit is contained in:
commit
43ba0db577
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class Sysinfo
|
|||
|
||||
public function usedMemory()
|
||||
{
|
||||
$used = shell_exec("free -m | awk '/Mem:/ { total=$2 ; used=$3 } END { print used/total*100}'");
|
||||
$used = shell_exec("free -m | awk 'NR==2{ total=$2 ; used=$3 } END { print used/total*100}'");
|
||||
return floor($used);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue