summaryrefslogtreecommitdiff
path: root/libs/load_average.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/load_average.php')
-rw-r--r--libs/load_average.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/libs/load_average.php b/libs/load_average.php
index 8eea8f9..6251c0e 100644
--- a/libs/load_average.php
+++ b/libs/load_average.php
@@ -1,21 +1,25 @@
<?php
-if (!($load_tmp = shell_exec('/bin/cat /proc/loadavg | /usr/bin/awk \'{print $1","$2","$3}\'')))
+if (!($load_tmp = shell_exec('cat /proc/loadavg | awk \'{print $1","$2","$3}\'')))
{
$load = array(0, 0, 0);
}
else
{
+ // Number of cores
+ $cores = (int)shell_exec('grep -c ^processor /proc/cpuinfo');
+
$load_exp = explode(',', $load_tmp);
$load = array_map(
- function ($value) {
- $v = (int)($value * 100);
+ function ($value, $cores) {
+ $v = (int)($value * 100 / $cores);
if ($v > 100)
$v = 100;
return $v;
},
- $load_exp
+ $load_exp,
+ array_fill(0, 3, $cores)
);
}