mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-14 00:24:40 +00:00
(legacy) another spaces and curly braces, stats.inc
This commit is contained in:
parent
5ef34e44ab
commit
683fb184d8
@ -5,331 +5,353 @@ require_once("filter.inc");
|
||||
require_once("pfsense-utils.inc");
|
||||
require_once("interfaces.inc");
|
||||
|
||||
function get_uptime_sec() {
|
||||
$boottime = "";
|
||||
$matches = "";
|
||||
$boottime = get_single_sysctl("kern.boottime");
|
||||
preg_match("/sec = (\d+)/", $boottime, $matches);
|
||||
$boottime = $matches[1];
|
||||
if(intval($boottime) == 0)
|
||||
return 0;
|
||||
|
||||
$uptime = time() - $boottime;
|
||||
return $uptime;
|
||||
function get_uptime_sec()
|
||||
{
|
||||
$boottime = "";
|
||||
$matches = "";
|
||||
$boottime = get_single_sysctl("kern.boottime");
|
||||
preg_match("/sec = (\d+)/", $boottime, $matches);
|
||||
$boottime = $matches[1];
|
||||
if (intval($boottime) == 0) {
|
||||
return 0;
|
||||
}
|
||||
$uptime = time() - $boottime;
|
||||
return $uptime;
|
||||
}
|
||||
|
||||
function get_stats() {
|
||||
$stats['cpu'] = cpu_usage();
|
||||
$stats['mem'] = mem_usage();
|
||||
$stats['uptime'] = get_uptime();
|
||||
$stats['states'] = get_pfstate();
|
||||
$stats['temp'] = get_temp();
|
||||
$stats['datetime'] = update_date_time();
|
||||
$stats['interfacestatistics'] = get_interfacestats();
|
||||
$stats['interfacestatus'] = get_interfacestatus();
|
||||
$stats['gateways'] = get_gatewaystats();
|
||||
$stats['cpufreq'] = get_cpufreq();
|
||||
$stats['load_average'] = get_load_average();
|
||||
$stats['mbuf'] = get_mbuf();
|
||||
$stats['mbufpercent'] = get_mbuf(true);
|
||||
$stats['statepercent'] = get_pfstate(true);
|
||||
$stats = join("|", $stats);
|
||||
return $stats;
|
||||
function get_stats()
|
||||
{
|
||||
$stats['cpu'] = cpu_usage();
|
||||
$stats['mem'] = mem_usage();
|
||||
$stats['uptime'] = get_uptime();
|
||||
$stats['states'] = get_pfstate();
|
||||
$stats['temp'] = get_temp();
|
||||
$stats['datetime'] = update_date_time();
|
||||
$stats['interfacestatistics'] = get_interfacestats();
|
||||
$stats['interfacestatus'] = get_interfacestatus();
|
||||
$stats['gateways'] = get_gatewaystats();
|
||||
$stats['cpufreq'] = get_cpufreq();
|
||||
$stats['load_average'] = get_load_average();
|
||||
$stats['mbuf'] = get_mbuf();
|
||||
$stats['mbufpercent'] = get_mbuf(true);
|
||||
$stats['statepercent'] = get_pfstate(true);
|
||||
$stats = join("|", $stats);
|
||||
return $stats;
|
||||
}
|
||||
|
||||
function get_gatewaystats() {
|
||||
$a_gateways = return_gateways_array();
|
||||
$gateways_status = array();
|
||||
$gateways_status = return_gateways_status(true);
|
||||
$data = "";
|
||||
$isfirst = true;
|
||||
foreach($a_gateways as $gname => $gw) {
|
||||
if(!$isfirst)
|
||||
$data .= ",";
|
||||
$isfirst = false;
|
||||
$data .= $gw['name'] . ",";
|
||||
if ($gateways_status[$gname]) {
|
||||
$data .= lookup_gateway_ip_by_name($gname) . ",";
|
||||
$gws = $gateways_status[$gname];
|
||||
switch(strtolower($gws['status'])) {
|
||||
case "none":
|
||||
$online = "Online";
|
||||
$bgcolor = "#90EE90"; // lightgreen
|
||||
break;
|
||||
case "down":
|
||||
$online = "Offline";
|
||||
$bgcolor = "#F08080"; // lightcoral
|
||||
break;
|
||||
case "delay":
|
||||
$online = "Latency";
|
||||
$bgcolor = "#F0E68C"; // khaki
|
||||
break;
|
||||
case "loss":
|
||||
$online = "Packetloss";
|
||||
$bgcolor = "#F0E68C"; // khaki
|
||||
break;
|
||||
default:
|
||||
$online = "Pending";
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
$data .= "~,";
|
||||
$gws['delay'] = "~";
|
||||
$gws['loss'] = "~";
|
||||
$online = "Unknown";
|
||||
$bgcolor = "#ADD8E6"; // lightblue
|
||||
}
|
||||
$data .= ($online == "Pending") ? "{$online},{$online}," : "{$gws['delay']},{$gws['loss']},";
|
||||
$data .= "<table border=\"0\" cellpadding=\"0\" cellspacing=\"2\" style=\"table-layout: fixed;\" summary=\"status\"><tr><td bgcolor=\"$bgcolor\"> $online </td></tr></table>";
|
||||
}
|
||||
return $data;
|
||||
function get_gatewaystats()
|
||||
{
|
||||
$a_gateways = return_gateways_array();
|
||||
$gateways_status = array();
|
||||
$gateways_status = return_gateways_status(true);
|
||||
$data = "";
|
||||
$isfirst = true;
|
||||
foreach($a_gateways as $gname => $gw) {
|
||||
if (!$isfirst) {
|
||||
$data .= ",";
|
||||
}
|
||||
$isfirst = false;
|
||||
$data .= $gw['name'] . ",";
|
||||
if ($gateways_status[$gname]) {
|
||||
$data .= lookup_gateway_ip_by_name($gname) . ",";
|
||||
$gws = $gateways_status[$gname];
|
||||
switch(strtolower($gws['status'])) {
|
||||
case "none":
|
||||
$online = "Online";
|
||||
$bgcolor = "#90EE90"; // lightgreen
|
||||
break;
|
||||
case "down":
|
||||
$online = "Offline";
|
||||
$bgcolor = "#F08080"; // lightcoral
|
||||
break;
|
||||
case "delay":
|
||||
$online = "Latency";
|
||||
$bgcolor = "#F0E68C"; // khaki
|
||||
break;
|
||||
case "loss":
|
||||
$online = "Packetloss";
|
||||
$bgcolor = "#F0E68C"; // khaki
|
||||
break;
|
||||
default:
|
||||
$online = "Pending";
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
$data .= "~,";
|
||||
$gws['delay'] = "~";
|
||||
$gws['loss'] = "~";
|
||||
$online = "Unknown";
|
||||
$bgcolor = "#ADD8E6"; // lightblue
|
||||
}
|
||||
$data .= ($online == "Pending") ? "{$online},{$online}," : "{$gws['delay']},{$gws['loss']},";
|
||||
$data .= "<table border=\"0\" cellpadding=\"0\" cellspacing=\"2\" style=\"table-layout: fixed;\" summary=\"status\"><tr><td bgcolor=\"$bgcolor\"> $online </td></tr></table>";
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
function get_uptime() {
|
||||
$uptime = get_uptime_sec();
|
||||
function get_uptime()
|
||||
{
|
||||
$uptime = get_uptime_sec();
|
||||
|
||||
if(intval($uptime) == 0)
|
||||
return;
|
||||
if (intval($uptime) == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
$updays = (int)($uptime / 86400);
|
||||
$uptime %= 86400;
|
||||
$uphours = (int)($uptime / 3600);
|
||||
$uptime %= 3600;
|
||||
$upmins = (int)($uptime / 60);
|
||||
$uptime %= 60;
|
||||
$upsecs = (int)($uptime);
|
||||
$updays = (int)($uptime / 86400);
|
||||
$uptime %= 86400;
|
||||
$uphours = (int)($uptime / 3600);
|
||||
$uptime %= 3600;
|
||||
$upmins = (int)($uptime / 60);
|
||||
$uptime %= 60;
|
||||
$upsecs = (int)($uptime);
|
||||
|
||||
$uptimestr = "";
|
||||
if ($updays > 1)
|
||||
$uptimestr .= "$updays Days ";
|
||||
else if ($updays > 0)
|
||||
$uptimestr .= "1 Day ";
|
||||
$uptimestr = "";
|
||||
if ($updays > 1) {
|
||||
$uptimestr .= "$updays Days ";
|
||||
} elseif ($updays > 0) {
|
||||
$uptimestr .= "1 Day ";
|
||||
}
|
||||
|
||||
if ($uphours > 1) {
|
||||
$hours = "s";
|
||||
} else {
|
||||
$hours = "";
|
||||
}
|
||||
if ($uphours > 1) {
|
||||
$hours = "s";
|
||||
} else {
|
||||
$hours = "";
|
||||
}
|
||||
|
||||
if ($upmins > 1) {
|
||||
$minutes = "s";
|
||||
} else {
|
||||
$minutes = "" ;
|
||||
}
|
||||
if ($upmins > 1) {
|
||||
$minutes = "s";
|
||||
} else {
|
||||
$minutes = "" ;
|
||||
}
|
||||
|
||||
if ($upmins > 1) {
|
||||
$seconds = "s";
|
||||
} else {
|
||||
$seconds = "";
|
||||
}
|
||||
if ($upmins > 1) {
|
||||
$seconds = "s";
|
||||
} else {
|
||||
$seconds = "";
|
||||
}
|
||||
|
||||
$uptimestr .= sprintf("%02d Hour$hours %02d Minute$minutes %02d Second$seconds", $uphours, $upmins, $upsecs);
|
||||
return $uptimestr;
|
||||
$uptimestr .= sprintf("%02d Hour$hours %02d Minute$minutes %02d Second$seconds", $uphours, $upmins, $upsecs);
|
||||
return $uptimestr;
|
||||
}
|
||||
|
||||
/* Calculates non-idle CPU time and returns as a percentage */
|
||||
function cpu_usage() {
|
||||
$duration = 1;
|
||||
$diff = array('user', 'nice', 'sys', 'intr', 'idle');
|
||||
$cpuTicks = array_combine($diff, explode(" ", get_single_sysctl('kern.cp_time')));
|
||||
sleep($duration);
|
||||
$cpuTicks2 = array_combine($diff, explode(" ", get_single_sysctl('kern.cp_time')));
|
||||
function cpu_usage()
|
||||
{
|
||||
$duration = 1;
|
||||
$diff = array('user', 'nice', 'sys', 'intr', 'idle');
|
||||
$cpuTicks = array_combine($diff, explode(" ", get_single_sysctl('kern.cp_time')));
|
||||
sleep($duration);
|
||||
$cpuTicks2 = array_combine($diff, explode(" ", get_single_sysctl('kern.cp_time')));
|
||||
|
||||
$totalStart = array_sum($cpuTicks);
|
||||
$totalEnd = array_sum($cpuTicks2);
|
||||
$totalStart = array_sum($cpuTicks);
|
||||
$totalEnd = array_sum($cpuTicks2);
|
||||
|
||||
// Something wrapped ?!?!
|
||||
if ($totalEnd <= $totalStart)
|
||||
return 0;
|
||||
// Something wrapped ?!?!
|
||||
if ($totalEnd <= $totalStart) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Calculate total cycles used
|
||||
$totalUsed = ($totalEnd - $totalStart) - ($cpuTicks2['idle'] - $cpuTicks['idle']);
|
||||
// Calculate total cycles used
|
||||
$totalUsed = ($totalEnd - $totalStart) - ($cpuTicks2['idle'] - $cpuTicks['idle']);
|
||||
|
||||
// Calculate the percentage used
|
||||
$cpuUsage = floor(100 * ($totalUsed / ($totalEnd - $totalStart)));
|
||||
// Calculate the percentage used
|
||||
$cpuUsage = floor(100 * ($totalUsed / ($totalEnd - $totalStart)));
|
||||
|
||||
return $cpuUsage;
|
||||
return $cpuUsage;
|
||||
}
|
||||
|
||||
function get_pfstate($percent=false) {
|
||||
global $config;
|
||||
$matches = "";
|
||||
if (isset($config['system']['maximumstates']) and $config['system']['maximumstates'] > 0)
|
||||
$maxstates="{$config['system']['maximumstates']}";
|
||||
else
|
||||
$maxstates=default_state_size();
|
||||
$curentries = `/sbin/pfctl -si |grep current`;
|
||||
if (preg_match("/([0-9]+)/", $curentries, $matches)) {
|
||||
$curentries = $matches[1];
|
||||
}
|
||||
if (!is_numeric($curentries))
|
||||
$curentries = 0;
|
||||
if ($percent)
|
||||
if (intval($maxstates) > 0)
|
||||
return round(($curentries / $maxstates) * 100, 0);
|
||||
else
|
||||
return "NA";
|
||||
else
|
||||
return $curentries . "/" . $maxstates;
|
||||
function get_pfstate($percent=false)
|
||||
{
|
||||
global $config;
|
||||
$matches = "";
|
||||
if (isset($config['system']['maximumstates']) and $config['system']['maximumstates'] > 0) {
|
||||
$maxstates="{$config['system']['maximumstates']}";
|
||||
} else {
|
||||
$maxstates=default_state_size();
|
||||
}
|
||||
$curentries = `/sbin/pfctl -si |grep current`;
|
||||
if (preg_match("/([0-9]+)/", $curentries, $matches)) {
|
||||
$curentries = $matches[1];
|
||||
}
|
||||
if (!is_numeric($curentries)) {
|
||||
$curentries = 0;
|
||||
}
|
||||
if ($percent) {
|
||||
if (intval($maxstates) > 0) {
|
||||
return round(($curentries / $maxstates) * 100, 0);
|
||||
} else {
|
||||
return "NA";
|
||||
}
|
||||
} else {
|
||||
return $curentries . "/" . $maxstates;
|
||||
}
|
||||
}
|
||||
|
||||
function get_mbuf($percent=false) {
|
||||
$mbufs_output=trim(`/usr/bin/netstat -mb | /usr/bin/grep "mbuf clusters in use" | /usr/bin/awk '{ print $1 }'`);
|
||||
list( $mbufs_current, $mbufs_cache, $mbufs_total, $mbufs_max ) = explode( "/", $mbufs_output);
|
||||
if ($percent)
|
||||
if ($mbufs_max > 0)
|
||||
return round(($mbufs_total / $mbufs_max) * 100, 0);
|
||||
else
|
||||
return "NA";
|
||||
else
|
||||
return "{$mbufs_total}/{$mbufs_max}";
|
||||
function get_mbuf($percent=false)
|
||||
{
|
||||
$mbufs_output=trim(`/usr/bin/netstat -mb | /usr/bin/grep "mbuf clusters in use" | /usr/bin/awk '{ print $1 }'`);
|
||||
list( $mbufs_current, $mbufs_cache, $mbufs_total, $mbufs_max ) = explode( "/", $mbufs_output);
|
||||
if ($percent) {
|
||||
if ($mbufs_max > 0) {
|
||||
return round(($mbufs_total / $mbufs_max) * 100, 0);
|
||||
} else {
|
||||
return "NA";
|
||||
}
|
||||
} else {
|
||||
return "{$mbufs_total}/{$mbufs_max}";
|
||||
}
|
||||
}
|
||||
|
||||
function get_temp() {
|
||||
$temp_out = get_single_sysctl("dev.cpu.0.temperature");
|
||||
if ($temp_out == "")
|
||||
$temp_out = get_single_sysctl("hw.acpi.thermal.tz0.temperature");
|
||||
|
||||
// Remove 'C' from the end
|
||||
return rtrim($temp_out, 'C');
|
||||
function get_temp()
|
||||
{
|
||||
$temp_out = get_single_sysctl("dev.cpu.0.temperature");
|
||||
if ($temp_out == "") {
|
||||
$temp_out = get_single_sysctl("hw.acpi.thermal.tz0.temperature");
|
||||
}
|
||||
// Remove 'C' from the end
|
||||
return rtrim($temp_out, 'C');
|
||||
}
|
||||
|
||||
/* Get mounted filesystems and usage. Do not display entries for virtual filesystems (e.g. devfs, nullfs, unionfs) */
|
||||
function get_mounted_filesystems() {
|
||||
$mout = "";
|
||||
$filesystems = array();
|
||||
exec("/bin/df -Tht ufs,tmpfs,zfs,cd9660 | /usr/bin/awk '{print $1, $2, $3, $4, $6, $7;}'", $mout);
|
||||
function get_mounted_filesystems()
|
||||
{
|
||||
$mout = "";
|
||||
$filesystems = array();
|
||||
exec("/bin/df -Tht ufs,tmpfs,zfs,cd9660 | /usr/bin/awk '{print $1, $2, $3, $4, $6, $7;}'", $mout);
|
||||
|
||||
/* Get rid of the header */
|
||||
array_shift($mout);
|
||||
foreach ($mout as $fs) {
|
||||
$f = array();
|
||||
list($f['device'], $f['type'], $f['total_size'], $f['used_size'], $f['percent_used'], $f['mountpoint']) = explode(' ', $fs);
|
||||
|
||||
/* We dont' want the trailing % sign. */
|
||||
$f['percent_used'] = trim($f['percent_used'], '%');
|
||||
|
||||
$filesystems[] = $f;
|
||||
}
|
||||
return $filesystems;
|
||||
/* Get rid of the header */
|
||||
array_shift($mout);
|
||||
foreach ($mout as $fs) {
|
||||
$f = array();
|
||||
list($f['device'], $f['type'], $f['total_size'], $f['used_size'], $f['percent_used'], $f['mountpoint']) = explode(' ', $fs);
|
||||
/* We dont' want the trailing % sign. */
|
||||
$f['percent_used'] = trim($f['percent_used'], '%');
|
||||
$filesystems[] = $f;
|
||||
}
|
||||
return $filesystems;
|
||||
}
|
||||
|
||||
|
||||
function swap_usage() {
|
||||
exec("/usr/sbin/swapinfo", $swap_info);
|
||||
$swap_used = "";
|
||||
foreach ($swap_info as $line)
|
||||
if (preg_match('/(\d+)%$/', $line, $matches)) {
|
||||
$swap_used = $matches[1];
|
||||
break;
|
||||
}
|
||||
|
||||
return $swap_used;
|
||||
function swap_usage()
|
||||
{
|
||||
exec("/usr/sbin/swapinfo", $swap_info);
|
||||
$swap_used = "";
|
||||
foreach ($swap_info as $line) {
|
||||
if (preg_match('/(\d+)%$/', $line, $matches)) {
|
||||
$swap_used = $matches[1];
|
||||
break;
|
||||
}
|
||||
}
|
||||
return $swap_used;
|
||||
}
|
||||
|
||||
function mem_usage() {
|
||||
$totalMem = get_single_sysctl("vm.stats.vm.v_page_count");
|
||||
if ($totalMem > 0) {
|
||||
$inactiveMem = get_single_sysctl("vm.stats.vm.v_inactive_count");
|
||||
$cachedMem = get_single_sysctl("vm.stats.vm.v_cache_count");
|
||||
$freeMem = get_single_sysctl("vm.stats.vm.v_free_count");
|
||||
$usedMem = $totalMem - ($inactiveMem + $cachedMem + $freeMem);
|
||||
$memUsage = round(($usedMem * 100) / $totalMem, 0);
|
||||
} else
|
||||
$memUsage = "NA";
|
||||
|
||||
return $memUsage;
|
||||
function mem_usage()
|
||||
{
|
||||
$totalMem = get_single_sysctl("vm.stats.vm.v_page_count");
|
||||
if ($totalMem > 0) {
|
||||
$inactiveMem = get_single_sysctl("vm.stats.vm.v_inactive_count");
|
||||
$cachedMem = get_single_sysctl("vm.stats.vm.v_cache_count");
|
||||
$freeMem = get_single_sysctl("vm.stats.vm.v_free_count");
|
||||
$usedMem = $totalMem - ($inactiveMem + $cachedMem + $freeMem);
|
||||
$memUsage = round(($usedMem * 100) / $totalMem, 0);
|
||||
} else {
|
||||
$memUsage = "NA";
|
||||
}
|
||||
return $memUsage;
|
||||
}
|
||||
|
||||
|
||||
function update_date_time() {
|
||||
$datetime = date("D M j G:i:s T Y");
|
||||
return $datetime;
|
||||
function update_date_time()
|
||||
{
|
||||
$datetime = date("D M j G:i:s T Y");
|
||||
return $datetime;
|
||||
}
|
||||
|
||||
function get_cpufreq() {
|
||||
$cpufreqs = "";
|
||||
$out = "";
|
||||
$cpufreqs = explode(" ", get_single_sysctl('dev.cpu.0.freq_levels'));
|
||||
$maxfreq = explode("/", $cpufreqs[0]);
|
||||
$maxfreq = $maxfreq[0];
|
||||
$curfreq = "";
|
||||
$curfreq = get_single_sysctl('dev.cpu.0.freq');
|
||||
if (($curfreq > 0) && ($curfreq != $maxfreq))
|
||||
$out = "Current: {$curfreq} MHz, Max: {$maxfreq} MHz";
|
||||
return $out;
|
||||
function get_cpufreq()
|
||||
{
|
||||
$cpufreqs = "";
|
||||
$out = "";
|
||||
$cpufreqs = explode(" ", get_single_sysctl('dev.cpu.0.freq_levels'));
|
||||
$maxfreq = explode("/", $cpufreqs[0]);
|
||||
$maxfreq = $maxfreq[0];
|
||||
$curfreq = "";
|
||||
$curfreq = get_single_sysctl('dev.cpu.0.freq');
|
||||
if (($curfreq > 0) && ($curfreq != $maxfreq)) {
|
||||
$out = "Current: {$curfreq} MHz, Max: {$maxfreq} MHz";
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
|
||||
function get_cpu_count($show_detail = false) {
|
||||
$cpucount = get_single_sysctl('kern.smp.cpus');
|
||||
|
||||
if ($show_detail) {
|
||||
$cpudetail = "";
|
||||
exec("/usr/bin/grep 'SMP.*package.*core' /var/run/dmesg.boot | /usr/bin/cut -f2- -d' '", $cpudetail);
|
||||
$cpucount = $cpudetail[0];
|
||||
}
|
||||
return $cpucount;
|
||||
function get_cpu_count($show_detail = false)
|
||||
{
|
||||
$cpucount = get_single_sysctl('kern.smp.cpus');
|
||||
if ($show_detail) {
|
||||
$cpudetail = "";
|
||||
exec("/usr/bin/grep 'SMP.*package.*core' /var/run/dmesg.boot | /usr/bin/cut -f2- -d' '", $cpudetail);
|
||||
$cpucount = $cpudetail[0];
|
||||
}
|
||||
return $cpucount;
|
||||
}
|
||||
|
||||
function get_load_average() {
|
||||
$load_average = "";
|
||||
exec("/usr/bin/uptime | /usr/bin/sed 's/^.*: //'", $load_average);
|
||||
return $load_average[0];
|
||||
function get_load_average()
|
||||
{
|
||||
$load_average = "";
|
||||
exec("/usr/bin/uptime | /usr/bin/sed 's/^.*: //'", $load_average);
|
||||
return $load_average[0];
|
||||
}
|
||||
|
||||
function get_interfacestats()
|
||||
{
|
||||
$ifdescrs = get_configured_interface_list();
|
||||
$array_collisions = array();
|
||||
$new_data = '';
|
||||
$ifdescrs = get_configured_interface_list();
|
||||
$array_collisions = array();
|
||||
$new_data = '';
|
||||
|
||||
foreach ($ifdescrs as $ifdescr => $ifname) {
|
||||
$ifinfo = get_interface_info($ifdescr);
|
||||
$new_data .= "{$ifinfo['inpkts']},";
|
||||
$new_data .= "{$ifinfo['outpkts']},";
|
||||
$new_data .= format_bytes($ifinfo['inbytes']) . ",";
|
||||
$new_data .= format_bytes($ifinfo['outbytes']) . ",";
|
||||
if (isset($ifinfo['inerrs'])){
|
||||
$new_data .= "{$ifinfo['inerrs']},";
|
||||
$new_data .= "{$ifinfo['outerrs']},";
|
||||
} else {
|
||||
$new_data .= "0,";
|
||||
$new_data .= "0,";
|
||||
}
|
||||
if (isset($ifinfo['collisions'])) {
|
||||
$new_data .= htmlspecialchars($ifinfo['collisions']) . ",";
|
||||
} else {
|
||||
$new_data .= "0,";
|
||||
}
|
||||
}
|
||||
|
||||
return $new_data;
|
||||
foreach ($ifdescrs as $ifdescr => $ifname) {
|
||||
$ifinfo = get_interface_info($ifdescr);
|
||||
$new_data .= "{$ifinfo['inpkts']},";
|
||||
$new_data .= "{$ifinfo['outpkts']},";
|
||||
$new_data .= format_bytes($ifinfo['inbytes']) . ",";
|
||||
$new_data .= format_bytes($ifinfo['outbytes']) . ",";
|
||||
if (isset($ifinfo['inerrs'])){
|
||||
$new_data .= "{$ifinfo['inerrs']},";
|
||||
$new_data .= "{$ifinfo['outerrs']},";
|
||||
} else {
|
||||
$new_data .= "0,";
|
||||
$new_data .= "0,";
|
||||
}
|
||||
if (isset($ifinfo['collisions'])) {
|
||||
$new_data .= htmlspecialchars($ifinfo['collisions']) . ",";
|
||||
} else {
|
||||
$new_data .= "0,";
|
||||
}
|
||||
}
|
||||
return $new_data;
|
||||
}
|
||||
|
||||
function get_interfacestatus()
|
||||
{
|
||||
$ifdescrs = get_configured_interface_with_descr();
|
||||
$data = '';
|
||||
$ifdescrs = get_configured_interface_with_descr();
|
||||
$data = '';
|
||||
|
||||
foreach ($ifdescrs as $ifdescr => $ifname) {
|
||||
$ifinfo = get_interface_info($ifdescr);
|
||||
$data .= $ifname . ",";
|
||||
if ($ifinfo['status'] == "up" || $ifinfo['status'] == "associated") {
|
||||
$data .= "up";
|
||||
} elseif ($ifinfo['status'] == "no carrier") {
|
||||
$data .= "down";
|
||||
} elseif ($ifinfo['status'] == "down") {
|
||||
$data .= "block";
|
||||
}
|
||||
$data .= ",";
|
||||
if ($ifinfo['ipaddr']) {
|
||||
$data .= htmlspecialchars($ifinfo['ipaddr']);
|
||||
}
|
||||
$data .= ",";
|
||||
if ($ifinfo['status'] != "down") {
|
||||
$data .= htmlspecialchars($ifinfo['media']);
|
||||
}
|
||||
$data .= "~";
|
||||
}
|
||||
return $data;
|
||||
foreach ($ifdescrs as $ifdescr => $ifname) {
|
||||
$ifinfo = get_interface_info($ifdescr);
|
||||
$data .= $ifname . ",";
|
||||
if ($ifinfo['status'] == "up" || $ifinfo['status'] == "associated") {
|
||||
$data .= "up";
|
||||
} elseif ($ifinfo['status'] == "no carrier") {
|
||||
$data .= "down";
|
||||
} elseif ($ifinfo['status'] == "down") {
|
||||
$data .= "block";
|
||||
}
|
||||
$data .= ",";
|
||||
if ($ifinfo['ipaddr']) {
|
||||
$data .= htmlspecialchars($ifinfo['ipaddr']);
|
||||
}
|
||||
$data .= ",";
|
||||
if ($ifinfo['status'] != "down") {
|
||||
$data .= htmlspecialchars($ifinfo['media']);
|
||||
}
|
||||
$data .= "~";
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user