Files

22 lines
395 B
PHP
Raw Permalink Normal View History

2011-11-28 17:15:42 +00:00
<?php
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2012-04-05 16:47:39 +00:00
$rrd_filename = rrd_name($device['hostname'], 'vpdn-l2tp');
2011-11-28 17:15:42 +00:00
$stats = array('sessions');
$i = 0;
foreach ($stats as $stat) {
$i++;
$rrd_list[$i]['filename'] = $rrd_filename;
$rrd_list[$i]['ds'] = $stat;
2011-11-28 17:15:42 +00:00
}
$colours = 'mixed';
2011-11-28 17:15:42 +00:00
$nototal = 1;
2011-11-28 17:15:42 +00:00
$simple_rrd = 1;
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_line.inc.php';