Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
879 B
PHP
Raw Permalink Normal View History

<?php
$device = device_by_id_cache($vars['id']);
$units = 'b';
$total_units = 'B';
$colours_in = 'greens';
$multiplier = '8';
$colours_out = 'blues';
2011-10-01 10:10:02 +00:00
$nototal = 1;
2011-10-01 10:10:02 +00:00
$ds_in = 'traf_in';
$ds_out = 'traf_out';
2011-10-01 10:10:02 +00:00
$graph_title = 'Traffic Statistic';
2011-10-01 10:10:02 +00:00
$colour_line_in = '006600';
$colour_line_out = '000099';
$colour_area_in = 'CDEB8B';
$colour_area_out = 'C3D9FF';
2011-10-01 10:10:02 +00:00
$rrd_list = [];
$rrd_filenames = glob(Rrd::name($device['hostname'], ['app', 'shoutcast', $app->app_id], '*.rrd'));
foreach ($rrd_filenames as $file) {
2016-07-07 21:57:18 -05:00
$pieces = explode('-', basename($file, '.rrd'));
$hostname = end($pieces);
[$host, $port] = explode('_', $hostname, 2);
$rrd_list[] = [
'filename' => $file,
'descr' => $host . ':' . $port,
'ds_in' => $ds_in,
'ds_out' => $ds_out,
];
2011-10-01 10:10:02 +00:00
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_bits_separated.inc.php';