mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
25 lines
739 B
PHP
25 lines
739 B
PHP
<?php
|
|
|
|
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';
|
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
|
|
|
echo '<div class=graphhead>ADSL Line Attenuation</div>';
|
|
$graph_type = 'port_adsl_attenuation';
|
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
|
|
|
echo '<div class=graphhead>ADSL Line SNR Margin</div>';
|
|
$graph_type = 'port_adsl_snr';
|
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
|
|
|
echo '<div class=graphhead>ADSL Output Powers</div>';
|
|
$graph_type = 'port_adsl_power';
|
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
|
}
|