. * * @package LibreNMS * @link http://librenms.org * @copyright 2020 KanREN Inc. * @author Heath Barnhart */ namespace LibreNMS\Snmptrap\Handlers; class CyberPowerUtil { /** * Get the trap message * * @param Trap $trap * @return string */ public static function getMessage($trap) { return $trap->getOidData($trap->findOid('CPS-MIB::mtrapinfoString')); } }