BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

loadavg.php 183B

12345678910111213
  1. <?php
  2. #authorize();
  3. print
  4. json_encode(
  5. array(
  6. 'status' => 'success',
  7. 'response' => array(
  8. 'loadAverage' => sys_getloadavg()
  9. )
  10. )
  11. );