Files

7 lines
375 B
PHP
Raw Permalink Normal View History

<?php
2018-12-16 07:42:50 -06:00
$hardware_array = snmp_get_multi($device, ['upsIdentManufacturer.0', 'upsIdentModel.0', 'upsIdentAgentSoftwareVersion.0'], '-OQUs', 'UPS-MIB');
d_echo($hardware_array);
$hardware = trim($hardware_array[0]['upsIdentManufacturer'], '"') . ' - ' . trim($hardware_array[0]['upsIdentModel'], '"');
$version = trim($hardware_array[0]['upsIdentAgentSoftwareVersion'], '"');