Server informations
This commit is contained in:
parent
e0bbc09389
commit
c774ad90c2
@ -3,6 +3,19 @@
|
|||||||
|
|
||||||
class Log extends Template
|
class Log extends Template
|
||||||
{
|
{
|
||||||
|
//TODO: to server manager
|
||||||
|
function getSystemMemInfo()
|
||||||
|
{
|
||||||
|
$data = explode("\n", file_get_contents("/proc/meminfo"));
|
||||||
|
$meminfo = array();
|
||||||
|
foreach ($data as $line) {
|
||||||
|
$data = explode(":", $line);
|
||||||
|
if (count($data)!=2) continue;
|
||||||
|
$meminfo[$data[0]] = trim($data[1]);
|
||||||
|
}
|
||||||
|
return $meminfo;
|
||||||
|
}
|
||||||
|
|
||||||
function __construct()
|
function __construct()
|
||||||
{
|
{
|
||||||
global $userManager;
|
global $userManager;
|
||||||
@ -31,6 +44,16 @@ class Log extends Template
|
|||||||
$template->prepare('title', 'Logy');
|
$template->prepare('title', 'Logy');
|
||||||
$template->prepare('logsFiles', $result);
|
$template->prepare('logsFiles', $result);
|
||||||
$template->prepare('langMng', $langMng);
|
$template->prepare('langMng', $langMng);
|
||||||
|
$template->prepare('CPU', sys_getloadavg()[0]);
|
||||||
|
$template->prepare('UPTIME', shell_exec('uptime -p'));
|
||||||
|
$template->prepare('ramFree', $this->getSystemMemInfo()["MemFree"]);
|
||||||
|
$template->prepare('ramTotal', $this->getSystemMemInfo()["MemTotal"]);
|
||||||
|
$template->prepare('diskTotal', disk_total_space("/"));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$template->render();
|
$template->render();
|
||||||
|
|
||||||
|
@ -22,7 +22,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-md-9 main-body">
|
<div class="col-md-9 main-body">
|
||||||
<div class="col-12 col-sm-9 mx-auto mt-4">
|
<div class="col-12 col-sm-9 mx-auto mt-4">
|
||||||
<label><?php echo $LANGMNG->get('l_logMaxLiveTime') . " " . $LOGTOLIVETIME . " days";?></label>
|
<label><?php echo $LANGMNG->get('l_logMaxLiveTime') . " " . $LOGTOLIVETIME . " days";?></label></br>
|
||||||
|
|
||||||
|
<label>CPU: <?php echo $CPU;?></label></br>
|
||||||
|
<progress value="<?php echo $CPU;?>" max="1"> <?php echo $RAMFREE;?> </progress></br>
|
||||||
|
<label>UPTIME: <?php echo $UPTIME;?></label></br>
|
||||||
|
<label>RAM TOTAL: <?php echo $RAMTOTAL;?></label></br>
|
||||||
|
<label>RAM FREE: <?php echo $RAMFREE;?></label></br>
|
||||||
|
<progress value="<?php echo explode(" ", $RAMFREE)[0];?>" max="<?php echo explode(" ", $RAMTOTAL)[0];?>"> <?php echo $RAMFREE;?> </progress></br>
|
||||||
|
|
||||||
|
<label>DISKTOTAL: <?php echo $DISKTOTAL;?> bytes available</label></br>
|
||||||
|
|
||||||
|
|
||||||
<form method="post" action="">
|
<form method="post" action="">
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<select class="input" name="LogFile">
|
<select class="input" name="LogFile">
|
||||||
|
Loading…
Reference in New Issue
Block a user