Files

25 lines
747 B
PHP
Raw Permalink Normal View History

2010-07-18 08:51:18 +00:00
<?php
2016-08-18 20:28:22 -05:00
if (file_exists(get_port_rrdfile_path($device['hostname'], $port['port_id'], 'adsl'))) {
$iid = $id;
echo '<div class=graphhead>ADSL Line Speed</div>';
$graph_type = 'port_adsl_speed';
2012-04-06 13:56:23 +00:00
2019-04-11 23:26:42 -05:00
include 'includes/html/print-interface-graphs.inc.php';
2011-03-16 23:10:10 +00:00
echo '<div class=graphhead>ADSL Line Attenuation</div>';
$graph_type = 'port_adsl_attenuation';
2012-04-06 13:56:23 +00:00
2019-04-11 23:26:42 -05:00
include 'includes/html/print-interface-graphs.inc.php';
2011-03-16 23:10:10 +00:00
echo '<div class=graphhead>ADSL Line SNR Margin</div>';
$graph_type = 'port_adsl_snr';
2012-04-06 13:56:23 +00:00
2019-04-11 23:26:42 -05:00
include 'includes/html/print-interface-graphs.inc.php';
2011-03-16 23:10:10 +00:00
echo '<div class=graphhead>ADSL Output Powers</div>';
$graph_type = 'port_adsl_power';
2012-04-06 13:56:23 +00:00
2019-04-11 23:26:42 -05:00
include 'includes/html/print-interface-graphs.inc.php';
2011-03-16 23:10:10 +00:00
}