Files
main/stats.php
2026-04-18 18:35:39 +02:00

35 lines
976 B
PHP

<?php
include 'header.php';
ini_set("display_errors", "On");
error_reporting(E_ALL);
$users = array();
foreach (scandir("/home/") as $file) {
if (in_array($file, array('.', '..'))) continue;
array_push($users, $file);
}
$stats = json_decode(file_get_contents('/opt/bots/stats/stats.json'), true);
$today_msg = $stats['today_msg'];
$all_msg = $stats['all_msg'];
?>
<h1>> Statystyki</h1>
<article id="content">
Statystyki z tego serwera tilde
<ul>
<li>Liczba użytkowników: <?=count($users);?></li>
<li>Liczba wiadomości na IRC: <?=$all_msg?> </li>
<li>Liczba wiadomości na IRC dziś: <?=$today_msg?></li>
<li>Ostatni server load: <?=shell_exec("/usr/bin/top -n 1 | grep Load | cut -d' ' -f3,4,5");?></li>
<li>Wolny RAM: <?=shell_exec("/usr/bin/free -h | grep Mem | awk '{print \$NF}'");?>
</ul>
<img src="stats.png" style="max-width: 650px">
</article>
<?php
include 'footer.php';
?>