41 lines
971 B
PHP
Raw Normal View History

<?php
// HOST-RESOURCES-MIB
2015-07-13 20:10:26 +02:00
// Generic System Statistics
use LibreNMS\RRD\RrdDefinition;
2015-07-13 20:10:26 +02:00
$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' => RrdDefinition::make()->addDataset('procs', 'GAUGE', 0),
);
$fields = array(
'procs' => $hrSystem[0]['hrSystemProcesses'],
);
data_update($device, 'hr_processes', $tags, $fields);
2015-08-19 20:58:02 +00:00
2015-07-13 20:10:26 +02:00
$graphs['hr_processes'] = true;
echo ' Processes';
}
2015-07-13 20:10:26 +02:00
if (is_numeric($hrSystem[0]['hrSystemNumUsers'])) {
$tags = array(
'rrd_def' => RrdDefinition::make()->addDataset('users', 'GAUGE', 0)
);
$fields = array(
'users' => $hrSystem[0]['hrSystemNumUsers'],
);
data_update($device, 'hr_users', $tags, $fields);
2015-08-19 20:58:02 +00:00
2015-07-13 20:10:26 +02:00
$graphs['hr_users'] = true;
echo ' Users';
}
2015-07-13 20:10:26 +02:00
echo "\n";
unset($oid_list, $hrSystem);