mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-12 18:36:29 +00:00
16 lines
156 B
PHP
16 lines
156 B
PHP
<?
|
|
|
|
authorize(true);
|
|
|
|
print
|
|
json_encode(
|
|
array(
|
|
'status' => 'success',
|
|
'response' => array(
|
|
'loadAverage' => sys_getloadavg()
|
|
)
|
|
)
|
|
);
|
|
|
|
?>
|