Files
librenms-librenms/includes/html/graphs/device/netstat_ip.inc.php
2020-09-21 15:40:17 +02:00

33 lines
707 B
PHP

<?php
$rrd_filename = rrd_name($device['hostname'], 'netstats-ip');
$stats = [
'ipForwDatagrams' => [],
'ipInDelivers' => [],
'ipInReceives' => [],
'ipOutRequests' => [],
'ipInDiscards' => [],
'ipOutDiscards' => [],
'ipOutNoRoutes' => [],
];
$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;
}
}
$colours = 'mixed';
$scale_min = '0';
$nototal = 1;
$simple_rrd = true;
require 'includes/html/graphs/generic_multi_line.inc.php';