mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Sensors remove reliance on global variable * Apply fixes from StyleCI * Clear the instance instead of reset. Remove $valid['sensors'] from docs --------- Co-authored-by: Tony Murray <murrant@users.noreply.github.com>
86 lines
4.1 KiB
PHP
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(null, $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";
|
|
}
|
|
}
|
|
}
|