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
|
2021-10-02 01:58:26 +02:00
|
|
|
|
2021-10-03 01:03:24 +02:00
|
|
|
use App\Models\HrSystem;
|
2017-02-23 22:45:50 +00:00
|
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
|
2021-10-02 01:58:26 +02:00
|
|
|
$oid_list = ['hrSystemMaxProcesses.0', '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 = [
|
2017-02-23 22:45:50 +00:00
|
|
|
'rrd_def' => RrdDefinition::make()->addDataset('procs', 'GAUGE', 0),
|
2020-09-21 15:43:38 +02:00
|
|
|
];
|
|
|
|
$fields = [
|
2015-08-18 16:26:55 +00:00
|
|
|
'procs' => $hrSystem[0]['hrSystemProcesses'],
|
2020-09-21 15:43:38 +02:00
|
|
|
];
|
2015-08-18 16:26:55 +00:00
|
|
|
|
2016-08-28 12:32:58 -05:00
|
|
|
data_update($device, 'hr_processes', $tags, $fields);
|
2015-08-19 20:58:02 +00:00
|
|
|
|
2020-07-23 09:57:22 -05: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 = [
|
2015-08-18 16:26:55 +00:00
|
|
|
'users' => $hrSystem[0]['hrSystemNumUsers'],
|
2020-09-21 15:43:38 +02:00
|
|
|
];
|
2015-08-18 16:26:55 +00:00
|
|
|
|
2016-08-28 12:32:58 -05:00
|
|
|
data_update($device, 'hr_users', $tags, $fields);
|
2015-08-19 20:58:02 +00:00
|
|
|
|
2021-10-03 01:03:24 +02:00
|
|
|
HrSystem::updateOrCreate(['device_id' => $device['device_id']],
|
|
|
|
['hrSystemNumUsers' => $hrSystem[0]['hrSystemNumUsers'],
|
|
|
|
'hrSystemProcesses' => $hrSystem[0]['hrSystemProcesses'],
|
|
|
|
'hrSystemMaxProcesses' => $hrSystem[0]['hrSystemMaxProcesses'], ]);
|
|
|
|
|
2020-07-23 09:57:22 -05:00
|
|
|
$os->enableGraph('hr_users');
|
2015-07-13 20:10:26 +02:00
|
|
|
echo ' Users';
|
2010-07-28 12:59:59 +00:00
|
|
|
}
|
2009-11-09 11:38:13 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "\n";
|
2017-02-08 04:54:30 +00:00
|
|
|
|
|
|
|
unset($oid_list, $hrSystem);
|