. * * @package LibreNMS * @link http://librenms.org * @copyright 2017 Tony Murray * @author Tony Murray */ namespace LibreNMS\OS; use LibreNMS\Device\WirelessSensor; use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery; use LibreNMS\OS; class Hpmsm extends OS implements WirelessClientsDiscovery { /** * Returns an array of LibreNMS\Device\Sensor objects that have been discovered * * @return array Sensors */ public function discoverWirelessClients() { return array( new WirelessSensor( 'clients', $this->getDeviceId(), '.1.3.6.1.4.1.8744.5.25.1.7.2.0', 'hpmsm', 0, 'Clients: Total' ) ); } }