Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -6,7 +6,7 @@
*
* @package observium
* @subpackage discovery
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2021 Observium Limited
* @copyright (C) Adam Armstrong
*
*/
@ -14,36 +14,34 @@
// fs-MIB::switchThermalActionRisingThreshold.1.1.1 = INTEGER: 50
// fs-MIB::switchThermalActionFallingThreshold.1.1.1 = INTEGER: 40
$oids = snmpwalk_multipart_oid($device, 'switchThermalTempValue', array(), 'fs-MIB');
$oids = snmpwalk_multipart_oid($device, 'switchThermalTempValue', [], 'fs-MIB');
if (safe_empty($oids)) {
return;
return;
}
$limit_oids = snmpwalk_multipart_oid($device, 'switchThermalActionRisingThreshold', array(), 'fs-MIB');
$limit_oids = snmpwalk_multipart_oid($device, 'switchThermalActionRisingThreshold', [], 'fs-MIB');
$limit_oids = snmpwalk_multipart_oid($device, 'switchThermalActionFallingThreshold', $limit_oids, 'fs-MIB');
print_debug_vars($oids);
print_debug_vars($limit_oids);
foreach ($oids as $unit => $entries)
{
foreach ($entries as $i => $entry)
{
$index = "$unit.$i";
foreach ($oids as $unit => $entries) {
foreach ($entries as $i => $entry) {
$index = "$unit.$i";
$descr = "Sensor $i (Unit $unit)";
$oid_name = 'switchThermalTempValue';
$oid_num = '.1.3.6.1.4.1.52642.2.1.45.1.1.11.1.3.'.$index;
//$type = $mib . '-' . $oid_name;
$value = $entry[$oid_name];
$descr = "Sensor $i (Unit $unit)";
$oid_name = 'switchThermalTempValue';
$oid_num = '.1.3.6.1.4.1.52642.2.1.45.1.1.11.1.3.' . $index;
//$type = $mib . '-' . $oid_name;
$value = $entry[$oid_name];
// Limits
if (isset($port_sw[$entry['connUnitPortIndex']])) {
$entry = array_merge($entry, array_shift($limit_oids[$unit][$i]));
// Limits
if (isset($port_sw[$entry['connUnitPortIndex']])) {
$entry = array_merge($entry, array_shift($limit_oids[$unit][$i]));
}
$limits = [
'limit_high' => $entry['switchThermalActionRisingThreshold'],
'limit_high_warn' => $entry['switchThermalActionFallingThreshold']
];
discover_sensor_ng($device, 'temperature', $mib, $oid_name, $oid_num, $index, $descr, 1, $value, $limits);
}
$limits = [
'limit_high' => $entry['switchThermalActionRisingThreshold'],
'limit_high_warn' => $entry['switchThermalActionFallingThreshold']
];
discover_sensor_ng($device, 'temperature', $mib, $oid_name, $oid_num, $index, NULL, $descr, 1, $value, $limits);
}
}
// EOF