mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added discovery for state of serverscheck flooding sensors. DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 5926`
66 lines
2.6 KiB
PHP
66 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* serverscheck.inc.php
|
|
*
|
|
* LibreNMS state discover module for serverscheck flooding sensor
|
|
*
|
|
* 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/>.
|
|
*
|
|
* @package LibreNMS
|
|
* @link http://librenms.org
|
|
* @copyright 2018 Marcus Pink
|
|
* @author Marcus Pink <mpink@avantgarde-labs.de>
|
|
*/
|
|
|
|
$serverscheck_oids = [
|
|
'sensor1Value.0' => '.1.3.6.1.4.1.17095.3.2.0',
|
|
'sensor2Value.0' => '.1.3.6.1.4.1.17095.3.6.0',
|
|
'sensor3Value.0' => '.1.3.6.1.4.1.17095.3.10.0',
|
|
'sensor4Value.0' => '.1.3.6.1.4.1.17095.3.14.0',
|
|
'sensor5Value.0' => '.1.3.6.1.4.1.17095.3.18.0',
|
|
];
|
|
|
|
foreach ($pre_cache['serverscheck_control'] as $oid_name => $oid_value) {
|
|
if ((str_contains($oid_name, 'name')) && (str_contains($oid_value, array('Flooding', 'Leckage')))) {
|
|
preg_match("/(\d+)/", $oid_name, $temp_x);
|
|
$tmp_oid = 'sensor' . $temp_x[0] . 'Value.0';
|
|
$current = $pre_cache['serverscheck_control'][$tmp_oid];
|
|
$state = 'Serverscheck_FloodSensor';
|
|
if ($current) {
|
|
$index = str_replace('.0', '', $oid_name);
|
|
$descr = $oid_value;
|
|
$state_index_id = create_state_index($state);
|
|
if ($state_index_id) {
|
|
$states = [
|
|
[$state_index_id, '-', 1, 1, 1],
|
|
[$state_index_id, 'DRY', 1, 2, 0],
|
|
[$state_index_id, 'WET', 1, 4, 2],
|
|
];
|
|
foreach ($states as $value) {
|
|
$insert = [
|
|
'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, $serverscheck_oids[$tmp_oid], $index, $state, $descr, 1, 1, null, null, null, null, 1);
|
|
create_sensor_to_state_index($device, $state, $index);
|
|
}
|
|
}
|
|
}
|