Files

26 lines
549 B
PHP
Raw Permalink Normal View History

2010-07-18 08:51:18 +00:00
<?php
2016-08-18 20:28:22 -05:00
$rrd_filename = get_port_rrdfile_path($device['hostname'], $port['port_id'], 'adsl');
2010-07-18 08:51:18 +00:00
$rrd_list[0]['filename'] = $rrd_filename;
$rrd_list[0]['descr'] = 'Downstream';
$rrd_list[0]['ds'] = 'AtucCurrSnrMgn';
2010-07-18 08:51:18 +00:00
$rrd_list[1]['filename'] = $rrd_filename;
$rrd_list[1]['descr'] = 'Upstream';
$rrd_list[1]['ds'] = 'AturCurrSnrMgn';
2010-07-18 08:51:18 +00:00
$unit_text = 'dB';
2010-07-18 08:51:18 +00:00
$units = '';
$total_units = '';
$colours = 'mixed';
2010-07-18 08:51:18 +00:00
$scale_min = '0';
2010-07-18 08:51:18 +00:00
$nototal = 1;
if ($rrd_list) {
2019-04-11 23:26:42 -05:00
include 'includes/html/graphs/generic_multi_line.inc.php';
2010-07-18 08:51:18 +00:00
}