Files

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

27 lines
601 B
PHP
Raw Permalink Normal View History

<?php
2012-05-25 12:24:34 +00:00
// Cycle through dot3stats OIDs and build list of RRAs to pass to multi simplex grapher
$oids = [
'drop',
'punt',
'hostpunt',
];
$i = 0;
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($rrd_filename)) {
foreach ($oids as $oid) {
$oid = str_replace('dot3Stats', '', $oid);
$oid_ds = substr($oid, 0, 19);
$rrd_list[$i]['filename'] = $rrd_filename;
$rrd_list[$i]['descr'] = $oid;
$rrd_list[$i]['ds'] = $oid_ds;
$i++;
}
}
$colours = 'mixed';
$nototal = 1;
$unit_text = 'Errors';
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_simplex_seperated.inc.php';