Apply fixes from StyleCI (#12120)

This commit is contained in:
Jellyfrog
2020-09-21 15:40:17 +02:00
committed by GitHub
parent 77c531527c
commit 82f43cb98d
1733 changed files with 18337 additions and 18540 deletions

View File

@@ -3,15 +3,15 @@
echo "Raisecom";
$multiplier = 1;
$divisor = 1000;
$divisor = 1000;
foreach ($pre_cache['raisecomOpticalTransceiverDDMTable'] as $index => $data) {
foreach ($data as $key => $value) {
if (($key == 'txPower') && is_numeric($value['raisecomOpticalTransceiverParameterValue']) && ($value['raisecomOpticalTransceiverDDMValidStatus'] == 1)) {
$oid = '.1.3.6.1.4.1.8886.1.18.2.2.1.1.2.'.$index.'.3';
$oid = '.1.3.6.1.4.1.8886.1.18.2.2.1.1.2.' . $index . '.3';
$sensor_type = 'raisecomOpticalTransceiverTxPower';
$port = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index));
$descr = $port['ifDescr'] . ' Transmit Power';
$low_limit = $value['raisecomOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_limit = $value['raisecomOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_warn_limit = $value['raisecomOpticalTransceiverParamLowWarningThresh'] / $divisor;
$warn_limit = $value['raisecomOpticalTransceiverParamHighWarningThresh'] / $divisor;
$high_limit = $value['raisecomOpticalTransceiverParamHighAlarmThresh'] / $divisor;
@@ -19,15 +19,15 @@ foreach ($pre_cache['raisecomOpticalTransceiverDDMTable'] as $index => $data) {
$entPhysicalIndex = $index;
$entPhysicalIndex_measured = 'ports';
if ($port['ifAdminStatus'] == 'up') {
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'tx-'.$index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'tx-' . $index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
if (($key == 'rxPower') && is_numeric($value['raisecomOpticalTransceiverParameterValue']) && ($value['raisecomOpticalTransceiverDDMValidStatus'] != 0)) {
$oid = '.1.3.6.1.4.1.8886.1.18.2.2.1.1.2.'.$index.'.4';
$oid = '.1.3.6.1.4.1.8886.1.18.2.2.1.1.2.' . $index . '.4';
$sensor_type = 'raisecomOpticalTransceiverRxPower';
$port = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index));
$descr = $port['ifDescr'] . ' Receive Power';
$low_limit = $value['raisecomOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_limit = $value['raisecomOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_warn_limit = $value['raisecomOpticalTransceiverParamLowWarningThresh'] / $divisor;
$warn_limit = $value['raisecomOpticalTransceiverParamHighWarningThresh'] / $divisor;
$high_limit = $value['raisecomOpticalTransceiverParamHighAlarmThresh'] / $divisor;
@@ -35,7 +35,7 @@ foreach ($pre_cache['raisecomOpticalTransceiverDDMTable'] as $index => $data) {
$entPhysicalIndex = $index;
$entPhysicalIndex_measured = 'ports';
if ($port['ifAdminStatus'] == 'up') {
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'rx-'.$index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'rx-' . $index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
}