get the load average in a portable manner

pull/12316/head
Zane C. Bowers-Hadley 2022-12-03 04:24:49 -06:00
rodzic dbbbef368f
commit f664208157
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -445,7 +445,7 @@ class System
if (@is_readable('/proc/loadavg')) {
$content = @file_get_contents('/proc/loadavg');
if (empty($content)) {
$content = shell_exec('cat /proc/loadavg');
$content = shell_exec('uptime | sed "s/.*e: //" | sed "s/,//"');
}
}