Merge pull request #163 from f1rmb/loadavg
Fix load average display value, this is not a percentage made out the…
This commit is contained in:
commit
432f2d4646
1 changed files with 4 additions and 3 deletions
7
ajax.php
7
ajax.php
|
@ -195,8 +195,9 @@ if ($_GET['section'] == "sysinfo") {
|
||||||
}
|
}
|
||||||
|
|
||||||
$output = shell_exec('cat /proc/loadavg');
|
$output = shell_exec('cat /proc/loadavg');
|
||||||
$sysload = substr($output,0,strpos($output," "))*100;
|
$loadavg = explode(" ", $output);
|
||||||
showLapTime("sysload");
|
$sysload = $loadavg[0] . " / " . $loadavg[1] . " / " . $loadavg[2];
|
||||||
|
Showlaptime("sysload");
|
||||||
$stat1 = file('/proc/stat');
|
$stat1 = file('/proc/stat');
|
||||||
sleep(1);
|
sleep(1);
|
||||||
$stat2 = file('/proc/stat');
|
$stat2 = file('/proc/stat');
|
||||||
|
@ -268,7 +269,7 @@ if ($_GET['section'] == "sysinfo") {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<td><?php echo $sysload; ?> %</td>
|
<td><?php echo $sysload; ?></td>
|
||||||
<td>
|
<td>
|
||||||
<?php
|
<?php
|
||||||
if (defined("SHOWPROGRESSBARS")) {
|
if (defined("SHOWPROGRESSBARS")) {
|
||||||
|
|
Loading…
Reference in a new issue