Browse Source

Fix: function usedMemory

While language in console is not English, this function may return `nan`
pull/1124/head
BANKA2017 1 year ago
committed by GitHub
parent
commit
c0b0d87ff4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/lib/system.php

2
app/lib/system.php

@ -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…
Cancel
Save