. * * @package LibreNMS * @link http://librenms.org * @copyright 2017 Neil Lathwood * @author Neil Lathwood */ $oid = '.1.3.6.1.4.1.7571.100.1.1.7.2.4.10.0'; $usage = snmp_get($device, $oid, '-Ovqn'); if (is_numeric($usage)) { $usage = 100 - ($usage / 10); } unset( $oid, $usage );