Gazelle/sections/ajax/loadavg.php
2012-03-01 08:00:25 +00:00

16 lines
156 B
PHP

<?
authorize(true);
print
json_encode(
array(
'status' => 'success',
'response' => array(
'loadAverage' => sys_getloadavg()
)
)
);
?>