From 5d3a2868333cf5474cce7f59b4e47c17cbc0c9cf Mon Sep 17 00:00:00 2001 From: TheGreatDoc <32565115+TheGreatDoc@users.noreply.github.com> Date: Fri, 22 Feb 2019 23:02:21 +0100 Subject: [PATCH] Fix MyPowerOS mempools (#9861) --- includes/polling/mempools/mypoweros.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/polling/mempools/mypoweros.inc.php b/includes/polling/mempools/mypoweros.inc.php index 6a57efd930..6ef9086dab 100755 --- a/includes/polling/mempools/mypoweros.inc.php +++ b/includes/polling/mempools/mypoweros.inc.php @@ -2,7 +2,7 @@ echo 'Maipu MemPool'; -$memory = snmp_get_multi_oid($device, ['memoryTotalBytes.0, numBytesAlloc.0, numBytesFree.0'], '-OvQ', 'MPIOS-MIB'); +$memory = snmp_get_multi_oid($device, ['memoryTotalBytes.0', 'numBytesAlloc.0', 'numBytesFree.0'], '-OvQ', 'MPIOS-MIB'); $mempool['total'] = $memory['memoryTotalBytes.0']; $mempool['used'] = $memory['numBytesAlloc.0'];