device: Added CeraOS wireless sensors (#8167)

* CeraOS wireless sensors

* Add CeraOS test data, fix MSE

* fix whitespace
This commit is contained in:
Tony Murray
2018-02-18 15:31:18 -06:00
committed by Neil Lathwood
parent f8cceceeb6
commit 6887d771aa
19 changed files with 308 additions and 241 deletions

View File

@@ -28,7 +28,7 @@ namespace LibreNMS\Interfaces\Discovery\Sensors;
interface WirelessErrorRateDiscovery
{
/**
* Discover wireless bit error rate. This is in bps. Type is error-ratio.
* Discover wireless bit error rate. This is in bps. Type is error-rate.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors

View File

@@ -0,0 +1,37 @@
<?php
/**
* WirelessErrorsDiscovery.php
*
* Discover bit error sensors in total bits
*
* 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 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Interfaces\Discovery\Sensors;
interface WirelessErrorsDiscovery
{
/**
* Discover wireless bit errors. This is in total bits. Type is errors.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessErrors();
}

View File

@@ -28,7 +28,7 @@ namespace LibreNMS\Interfaces\Discovery\Sensors;
interface WirelessMseDiscovery
{
/**
* Discover wireless MSE. Mean square error value in dB.
* Discover wireless MSE. Mean square error value in dB. Type is mse.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors

View File

@@ -0,0 +1,38 @@
<?php
/**
* WirelessErrorsPolling.php
*
* Custom polling interface for wireless bit errors in total bits
*
* 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 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Interfaces\Polling\Sensors;
interface WirelessErrorsPolling
{
/**
* Poll wireless bit errors as total bits
* The returned array should be sensor_id => value pairs
*
* @param array $sensors Array of sensors needed to be polled
* @return array of polled data
*/
public function pollWirelessErrors(array $sensors);
}