librenms-librenms/includes/polling/netstats-udp.inc.php
Tony Murray 57650e4ffc Remove nfs requirement for distributed poller (with rrdtool 1.5+)
Use data_update instead of rrd_update/rrd_create and influx_update
Centralize rrd file check so we can check against a remote rrdcached server too
Use rrd_name() to generate rrd file names
2016-07-07 21:10:06 -05:00

45 lines
1.1 KiB
PHP

<?php
if ($device['os'] != 'Snom') {
echo ' UDP';
// These are at the start of large trees that we don't want to walk the entirety of, so we snmpget_multi them
$oids = array(
'udpInDatagrams',
'udpOutDatagrams',
'udpInErrors',
'udpNoPorts',
);
$rrd_def = array();
$snmpstring = '';
foreach ($oids as $oid) {
$oid_ds = truncate($oid, 19, '');
$rrd_def[] = " DS:$oid_ds:COUNTER:600:U:1000000"; // Limit to 1MPPS?
$snmpstring .= ' UDP-MIB::'.$oid.'.0';
}
$data = snmp_get_multi($device, $snmpstring, '-OQUs', 'UDP-MIB');
$fields = array();
foreach ($oids as $oid) {
if (is_numeric($data[0][$oid])) {
$value = $data[0][$oid];
}
else {
$value = 'U';
}
$fields[$oid] = $value;
}
if (isset($data[0]['udpInDatagrams']) && isset($data[0]['udpOutDatagrams'])) {
$tags = compact('rrd_def');
data_update($device, 'netstats-udp', $tags, $fields);
$graphs['netstat_udp'] = true;
}
}//end if
unset($oids, $data, $rrd_def, $fields, $tags, $snmpstring);