mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Comes from PR11322. * Code changes to solve github-apply warnings. Removed aos tests. * Added new aos tests.
10 lines
360 B
PHP
Executable File
10 lines
360 B
PHP
Executable File
<?php
|
|
|
|
$mempool['units'] = '1';
|
|
|
|
$mempool['total'] = snmp_get($device, 'systemHardwareMemorySize.0', '-OvQ', 'ALCATEL-IND1-SYSTEM-MIB');
|
|
$percent = snmp_get($device, 'healthDeviceMemoryLatest.0', '-OvQ', 'ALCATEL-IND1-HEALTH-MIB');
|
|
|
|
$mempool['used'] = ($mempool['total'] * ($percent / 100));
|
|
$mempool['free'] = ($mempool['total'] - $mempool['used']);
|