Files

32 lines
637 B
PHP
Raw Permalink Normal View History

<?php
$rrd_filename = rrd_name($device['hostname'], 'netstats-snmp');
2020-09-21 15:40:17 +02:00
$stats = [
'snmpInTraps',
'snmpOutTraps',
'snmpInTotalReqVars',
'snmpInTotalSetVars',
'snmpOutGetResponses',
'snmpOutSetRequests',
2020-09-21 15:40:17 +02:00
];
2011-09-18 22:55:29 +00:00
$i = 0;
foreach ($stats as $stat) {
$i++;
$rrd_list[$i]['filename'] = $rrd_filename;
2020-09-21 15:40:17 +02:00
$rrd_list[$i]['descr'] = str_replace('snmp', '', $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
2020-09-21 15:40:17 +02: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.inc.php';