librenms/includes/polling/hr-mib.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

37 lines
842 B
PHP

<?php
// HOST-RESOURCES-MIB
// Generic System Statistics
$oid_list = 'hrSystemProcesses.0 hrSystemNumUsers.0';
$hrSystem = snmp_get_multi($device, $oid_list, '-OUQs', 'HOST-RESOURCES-MIB');
if (is_numeric($hrSystem[0]['hrSystemProcesses'])) {
$tags = array(
'rrd_def' => 'DS:procs:GAUGE:600:0:U',
);
$fields = array(
'procs' => $hrSystem[0]['hrSystemProcesses'],
);
data_update($device,'hr_processes',$tags,$fields);
$graphs['hr_processes'] = true;
echo ' Processes';
}
if (is_numeric($hrSystem[0]['hrSystemNumUsers'])) {
$tags = array(
'rrd_def' => 'DS:users:GAUGE:600:0:U'
);
$fields = array(
'users' => $hrSystem[0]['hrSystemNumUsers'],
);
data_update($device,'hr_users',$tags,$fields);
$graphs['hr_users'] = true;
echo ' Users';
}
echo "\n";