2009-10-27 13:04:16 +00:00
|
|
|
<?php
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/netstats-ip.rrd';
|
2009-10-27 13:04:16 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$stats = array(
|
|
|
|
'ipForwDatagrams' => array(),
|
|
|
|
'ipInDelivers' => array(),
|
|
|
|
'ipInReceives' => array(),
|
|
|
|
'ipOutRequests' => array(),
|
|
|
|
'ipInDiscards' => array(),
|
|
|
|
'ipOutDiscards' => array(),
|
|
|
|
'ipOutNoRoutes' => array(),
|
|
|
|
);
|
2011-09-18 22:55:29 +00:00
|
|
|
|
2015-07-10 13:36:21 +02: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
|
|
|
}
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$colours = 'mixed';
|
2011-09-18 22:55:29 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$scale_min = '0';
|
|
|
|
$nototal = 1;
|
|
|
|
$simple_rrd = true;
|
2011-09-18 22:55:29 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
require 'includes/graphs/generic_multi_line.inc.php';
|