mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +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()
|
||
|
)
|
||
|
)
|
||
|
);
|
||
|
|
||
|
?>
|