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