ospfbgp 407c0a4470 newdevice: Added state support FAN, Power Supply Avaya VSP (#6693)
* Add state support FAN, Power Supply Avaya VSP

Adding FAN and Power Supply support for Avaya VOSS(VSP operating systems platform)

* Update avaya-vsp.inc.php

* Update avaya-vsp.inc.php

$index has been changed to rcChasFanOperStatus.$index and rcChasPowerSupplyOperStatus.$index in discover_sensor and create_sensor_to_state_index

* Update avaya-vsp.inc.php

its always the details.  nice to have another pair of eyes. :-)
2017-05-23 08:42:46 +01:00

104 lines
3.7 KiB
PHP

<?php
/**
* avaya-vsp.inc.php
*
* LibreNMS Fan and Power Supply state Discovery module for Avaya
* VOSS(VSP Operating System Software)
*
* Copyright (c) 2017 Daniel Cox <danielcoxman@gmail.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
/* rcChasFanOperStatus
* unknown(1),
* up(2),
* down(3),
*/
$fan_oper_status = '.1.3.6.1.4.1.2272.1.4.7.1.1.2';
$fan = snmpwalk_cache_oid_num($device, $fan_oper_status, array());
if (is_array($fan)) {
foreach ($fan as $oid => $array) {
$state = current($array);
$split_oid = explode('.', $oid);
$index = $split_oid[(count($split_oid) - 1)];
$current_oid = "$fan_oper_status.$index";
$descr = "Fan $index";
$state_name = 'rcChasFanOperStatus';
$state_index_id = create_state_index($state_name);
if ($state_index_id !== null) {
$states = array(
array($state_index_id, 'unknown', 0, 1, 3),
array($state_index_id, 'up', 0, 2, 0),
array($state_index_id, 'down', 0, 3, 1),
);
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
discover_sensor($valid['sensor'], 'state', $device, $current_oid, "rcChasFanOperStatus.$index", $state_name, $descr, '1', '1', null, null, '3', '3', $state);
create_sensor_to_state_index($device, $state_name, "rcChasFanOperStatus.$index");
}
}
/* rcChasPowerSupplyOperStatus
* unknown(1),
* empty(2),
* up(3),
* down(4)
*/
$power_supply_oper_status = '.1.3.6.1.4.1.2272.1.4.8.1.1.2';
$power_supply = snmpwalk_cache_oid_num($device, $power_supply_oper_status, array());
if (is_array($power_supply)) {
foreach ($power_supply as $oid => $array) {
$state = current($array);
$split_oid = explode('.', $oid);
$index = $split_oid[(count($split_oid) - 1)];
$current_oid = "$power_supply_oper_status.$index";
$descr = "Power Supply $index";
$state_name = 'rcChasPowerSupplyOperStatus';
$state_index_id = create_state_index($state_name);
if ($state_index_id !== null) {
$states = array(
array($state_index_id, 'unknown', 0, 1, 3),
array($state_index_id, 'empty', 0, 2, 0),
array($state_index_id, 'up', 0, 3, 0),
array($state_index_id, 'down', 0, 4, 1),
);
foreach ($states as $value) {
$insert = array(
'state_index_id' => $value[0],
'state_descr' => $value[1],
'state_draw_graph' => $value[2],
'state_value' => $value[3],
'state_generic_value' => $value[4]
);
dbInsert($insert, 'state_translations');
}
}
discover_sensor($valid['sensor'], 'state', $device, $current_oid, "rcChasPowerSupplyOperStatus.$index", $state_name, $descr, '1', '1', null, null, '4', '4', $state);
create_sensor_to_state_index($device, $state_name, "rcChasPowerSupplyOperStatus.$index");
}
}