value(); $transmit_oid_raw = '.1.3.6.1.4.1.3323.13.1.4.1.1.2.'; //"MNI-PROTEUS-AMT-MIB::mnPrPerfBaseTxPower" $receive_oid_raw = '.1.3.6.1.4.1.3323.13.1.4.1.1.3.'; //"MNI-PROTEUS-AMT-MIB::mnPrPerfBaseRSL" $receive_oid = $receive_oid_raw . $radio_index; $transmit_oid = $transmit_oid_raw . $radio_index; return [ new WirelessSensor( 'power', $this->getDeviceId(), $transmit_oid, 'mni-tx', 0, 'MNI Transmit', null, 1, 1 ), new WirelessSensor( 'power', $this->getDeviceId(), $receive_oid, 'mni-rx', 0, 'MNI Receive', null, 1, 1 ), ]; } /** * Discover wireless rate. This is in bps. Type is rate. * Returns an array of LibreNMS\Device\Sensor objects that have been discovered * * @return array */ public function discoverWirelessRate() { $radio_index = \SnmpQuery::get('MNI-PROTEUS-AMT-MIB::mnPrLinkStatLocalRadioIndex.0')->value(); $receive_oid_raw = '.1.3.6.1.4.1.3323.13.1.4.1.1.17.'; //"MNI-PROTEUS-AMT-MIB::mnPrPerfBaseLinkCapMbps"; $receive_oid = $receive_oid_raw . $radio_index; return [ new WirelessSensor( 'rate', $this->getDeviceId(), $receive_oid, 'mni-rx-rate', 0, 'MNI Receive Rate', null, 1000000, 1 ), ]; } }