2010-07-18 08:51:18 +00:00
|
|
|
<?php
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
if (file_exists($config['rrd_dir'].'/'.$device['hostname'].'/port-'.$port['ifIndex'].'-adsl.rrd')) {
|
|
|
|
$iid = $id;
|
|
|
|
echo '<div class=graphhead>ADSL Line Speed</div>';
|
|
|
|
$graph_type = 'port_adsl_speed';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '<div class=graphhead>ADSL Line Attenuation</div>';
|
|
|
|
$graph_type = 'port_adsl_attenuation';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '<div class=graphhead>ADSL Line SNR Margin</div>';
|
|
|
|
$graph_type = 'port_adsl_snr';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '<div class=graphhead>ADSL Output Powers</div>';
|
|
|
|
$graph_type = 'port_adsl_power';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
}
|