Files
librenms-librenms/includes/polling/hr-mib.inc.php
Tony Murray 020c5fd7e1 Remove legacy code and fix missing device graphs (#11950)
* removing $graphs global

* remove unused things

* fix some additional graphs

* Fix graphs persisting too soon

* correct name for poller module performance graph

* only one type of graph is used here
2020-07-23 09:57:22 -05:00

41 lines
980 B
PHP

<?php
// HOST-RESOURCES-MIB
// Generic System Statistics
use LibreNMS\RRD\RrdDefinition;
$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);
$os->enableGraph('hr_processes');
echo ' Processes';
}
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);
$os->enableGraph('hr_users');
echo ' Users';
}
echo "\n";
unset($oid_list, $hrSystem);