Files
librenms-librenms/includes/discovery/sensors/rpigpiomonitor.inc.php
Denny Friebe f23c5c0e7b Raspberry Pi: Add SNMP extend to monitor IO pins or sensor modules connected to the GPIO header (#12749)
* Raspberry Pi: Add SNMP extend to monitor IO pins or sensor modules connected to the GPIO header

* Raspberry Pi: Add new test data

* Raspberry Pi: Make styleci happy

* Raspberry Pi: Fix some more style issues

* Raspberry Pi: Use d_echo for array debug

* Raspberry Pi: Prevent processing if the extension is not present

* Raspberry Pi: Make styleci happy

* Raspberry Pi: Update test data

* Raspberry Pi: Remove debugging
2021-11-04 21:38:15 -05:00

86 lines
4.1 KiB
PHP

<?php
/**
* rpigpiomonitor.inc.php
*
* LibreNMS sensors discovery module for Raspberry Pi GPIO Monitor extension
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @link https://librenms.org
*
* @copyright 2021 Denny Friebe
* @author Denny Friebe <denny.friebe@icera-network.de>
*/
$gpio_mon_data = snmpwalk_cache_oid($device, 'nsExtendOutLine."rpigpiomonitor"', [], 'NET-SNMP-EXTEND-MIB', null, '-OteQUsb');
if (! empty($gpio_mon_data)) {
$sensor_index = 0;
$sensors = [];
foreach ($gpio_mon_data as $index => $entry) {
if (Str::contains($entry['nsExtendOutLine'], ';')) {
$splitted_data_array = explode(';', $entry['nsExtendOutLine']);
$sensor_data = [];
foreach ($splitted_data_array as $splitted_data_index => $splitted_data) {
$sensor_data_parts = explode(',', $splitted_data);
if ($splitted_data_index == 0) {
if (isset($sensor_data_parts[0]) && isset($sensor_data_parts[1]) && isset($sensor_data_parts[2])) {
$sensor_data['name'] = $sensor_data_parts[0];
$sensor_data['type'] = $sensor_data_parts[1];
$sensor_data['descr'] = $sensor_data_parts[2];
$sensor_data['low_limit'] = $sensor_data_parts[3];
$sensor_data['low_warn_limit'] = $sensor_data_parts[4];
$sensor_data['warn_limit'] = $sensor_data_parts[5];
$sensor_data['high_limit'] = $sensor_data_parts[6];
}
} else {
if (isset($sensor_data_parts[0]) && isset($sensor_data_parts[1]) && isset($sensor_data_parts[2])) {
if (! isset($sensor_data['state_data'])) {
$sensor_data['state_data'] = [];
}
$state_data['value'] = intval($sensor_data_parts[0]);
$state_data['generic'] = intval($sensor_data_parts[1]);
$state_data['graph'] = 1;
$state_data['descr'] = $sensor_data_parts[2];
array_push($sensor_data['state_data'], $state_data);
}
}
$sensors[$sensor_index] = $sensor_data;
}
} else {
$sensors[$sensor_index]['value'] = intval($entry['nsExtendOutLine']);
$sensors[$sensor_index]['oid'] = '.1.3.6.1.4.1.8072.1.3.2.4.1.2.' . $index;
$sensor_index++;
}
}
foreach ($sensors as $sensor_id => $sensor_data) {
if (isset($sensor_data['name']) && isset($sensor_data['type']) && isset($sensor_data['descr'])) {
if (isset($sensor_data['state_data'])) {
create_state_index($sensor_data['name'], $sensor_data['state_data']);
}
discover_sensor($valid['sensor'], $sensor_data['type'], $device, $sensor_data['oid'], $sensor_id, $sensor_data['name'], $sensor_data['descr'], 1, 1, $sensor_data['low_limit'], $sensor_data['low_warn_limit'], $sensor_data['warn_limit'], $sensor_data['high_limit'], $sensor_data['value']);
if (isset($sensor_data['state_data'])) {
create_sensor_to_state_index($device, $sensor_data['name'], $sensor_id);
}
} else {
echo "[rpigpiomonitor] An error occurred while reading a sensor! Please run 'rpigpiomonitor.php -validate' on the target device to verify the configuration.\n";
}
}
}