. * * @link https://www.librenms.org * * @copyright 2017 Tony Murray * @author Tony Murray */ namespace LibreNMS\Interfaces\Polling\Sensors; interface WirelessErrorRatePolling { /** * Poll wireless bit error rate as bps * 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 pollWirelessErrorRatio(array $sensors); }