* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2023 Observium Limited * */ $rrdfile = get_port_rrdfilename($port, "adsl", TRUE); if (is_file($rrdfile)) { echo(''); $graph_array['to'] = $config['time']['now']; $graph_array['id'] = $port['port_id']; echo(''); echo(''); echo(''); echo(''); echo('
'); echo("

ADSL Line Speed

"); $graph_array['type'] = "port_adsl_speed"; print_graph_row($graph_array); echo('
'); echo("

ADSL Line Attenuation

"); $graph_array['type'] = "port_adsl_attenuation"; print_graph_row($graph_array); echo('
'); echo("

ADSL Line SNR Margin

"); $graph_array['type'] = "port_adsl_snr"; print_graph_row($graph_array); echo('
'); echo('

ADSL Output Powers

'); $graph_array['type'] = "port_adsl_power"; print_graph_row($graph_array); echo('
'); } // EOF