Files

41 lines
961 B
PHP
Raw Permalink Normal View History

2009-11-09 11:38:13 +00:00
<?php
2012-05-25 12:24:34 +00:00
// HOST-RESOURCES-MIB
2015-07-13 20:10:26 +02:00
// Generic System Statistics
use LibreNMS\RRD\RrdDefinition;
2018-12-16 07:42:50 -06:00
$oid_list = ['hrSystemProcesses.0', 'hrSystemNumUsers.0'];
2015-07-13 20:10:26 +02:00
$hrSystem = snmp_get_multi($device, $oid_list, '-OUQs', 'HOST-RESOURCES-MIB');
if (is_numeric($hrSystem[0]['hrSystemProcesses'])) {
2020-09-21 15:43:38 +02:00
$tags = [
'rrd_def' => RrdDefinition::make()->addDataset('procs', 'GAUGE', 0),
2020-09-21 15:43:38 +02:00
];
$fields = [
'procs' => $hrSystem[0]['hrSystemProcesses'],
2020-09-21 15:43:38 +02:00
];
data_update($device, 'hr_processes', $tags, $fields);
2015-08-19 20:58:02 +00:00
$os->enableGraph('hr_processes');
2015-07-13 20:10:26 +02:00
echo ' Processes';
2009-11-09 11:38:13 +00:00
}
2015-07-13 20:10:26 +02:00
if (is_numeric($hrSystem[0]['hrSystemNumUsers'])) {
2020-09-21 15:43:38 +02:00
$tags = [
'rrd_def' => RrdDefinition::make()->addDataset('users', 'GAUGE', 0),
];
$fields = [
'users' => $hrSystem[0]['hrSystemNumUsers'],
2020-09-21 15:43:38 +02:00
];
data_update($device, 'hr_users', $tags, $fields);
2015-08-19 20:58:02 +00:00
$os->enableGraph('hr_users');
2015-07-13 20:10:26 +02:00
echo ' Users';
}
2009-11-09 11:38:13 +00:00
2015-07-13 20:10:26 +02:00
echo "\n";
unset($oid_list, $hrSystem);