ezservermonitor-web/libs/ping.php

30 lines
545 B
PHP
Raw Permalink Normal View History

2014-06-18 04:11:11 -04:00
<?php
require '../autoload.php';
2014-06-18 04:11:11 -04:00
$Config = new Config();
$datas = array();
if (count($Config->get('ping:hosts')) > 0)
$hosts = $Config->get('ping:hosts');
else
$hosts = array('google.com', 'wikipedia.org');
foreach ($hosts as $host)
{
2017-11-29 07:58:35 -05:00
exec('/bin/ping -qc 1 '.$host.' | awk -F/ \'/^(rtt|round-trip)/ { print $5 }\'', $result);
2014-06-18 04:11:11 -04:00
if (!isset($result[0]))
{
$result[0] = 0;
}
2014-06-18 04:11:11 -04:00
$datas[] = array(
'host' => $host,
'ping' => $result[0],
);
unset($result);
}
echo json_encode($datas);