Files

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

33 lines
708 B
PHP
Raw Permalink Normal View History

2009-10-27 13:04:16 +00:00
<?php
2021-03-28 17:25:30 -05:00
$rrd_filename = Rrd::name($device['hostname'], 'netstats-ip');
2009-10-27 13:04:16 +00:00
$stats = [
'ipForwDatagrams' => [],
'ipInDelivers' => [],
'ipInReceives' => [],
'ipOutRequests' => [],
'ipInDiscards' => [],
'ipOutDiscards' => [],
'ipOutNoRoutes' => [],
];
2011-09-18 22:55:29 +00:00
$i = 0;
foreach ($stats as $stat => $array) {
$i++;
$rrd_list[$i]['filename'] = $rrd_filename;
$rrd_list[$i]['descr'] = str_replace('ip', '', $stat);
$rrd_list[$i]['ds'] = $stat;
if (strpos($stat, 'Out') !== false) {
$rrd_list[$i]['invert'] = true;
}
2011-09-18 22:55:29 +00:00
}
$colours = 'mixed';
2011-09-18 22:55:29 +00:00
$scale_min = '0';
$nototal = 1;
$simple_rrd = true;
2011-09-18 22:55:29 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_line.inc.php';