37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage discovery
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
// HH3C-ENTITY-EXT-MIB::hh3cEntityExtCpuUsage.30 = INTEGER: 16
|
|
// HH3C-ENTITY-EXT-MIB::hh3cEntityExtCpuUsage.36 = INTEGER: 5
|
|
// HH3C-ENTITY-EXT-MIB::hh3cEntityExtCpuUsage.42 = INTEGER: 5
|
|
// HH3C-ENTITY-EXT-MIB::hh3cEntityExtCpuUsage.48 = INTEGER: 12
|
|
|
|
$oids = ['hh3cEntityExtCpuUsage', 'entPhysicalName'];
|
|
$processors_array = [];
|
|
foreach ($oids as $oid) {
|
|
$processors_array = snmpwalk_cache_oid($device, $oid, $processors_array, 'ENTITY-MIB:HH3C-ENTITY-EXT-MIB');
|
|
}
|
|
|
|
foreach ($processors_array as $index => $entry) {
|
|
if ($entry['hh3cEntityExtCpuUsage'] != 0) {
|
|
$oid = ".1.3.6.1.4.1.25506.2.6.1.1.1.1.6.$index";
|
|
$descr = $entry['entPhysicalName'];
|
|
$usage = $entry['hh3cEntityExtCpuUsage'];
|
|
discover_processor($valid['processor'], $device, $oid, $index, 'hh3c-fixed', $descr, 1, $usage);
|
|
}
|
|
}
|
|
|
|
unset ($processors_array);
|
|
|
|
// EOF
|