5 lines
129 B
PHP
5 lines
129 B
PHP
<?php
|
|
require_once 'ServerMonitor.php';
|
|
header('Content-Type: application/json');
|
|
echo json_encode(ServerMonitor::getMemory());
|
|
|