mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			587 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			587 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
if ($device['os'] == 'aos') {
 | 
						|
    echo 'Alcatel-Lucent OS: ';
 | 
						|
 | 
						|
    $total   = snmp_get($device, 'systemHardwareMemorySize.0', '-OvQ', 'ALCATEL-IND1-SYSTEM-MIB', '+'.$config['install_dir'].'/mibs/aos');
 | 
						|
    $percent = snmp_get($device, 'healthDeviceMemoryLatest.0', '-OvQ', 'ALCATEL-IND1-HEALTH-MIB', '+'.$config['install_dir'].'/mibs/aos');
 | 
						|
    $used    = ($total / 100 * $perc_used);
 | 
						|
    $free    = ($total - $used);
 | 
						|
 | 
						|
    if (is_numeric($total) && is_numeric($used)) {
 | 
						|
        discover_mempool($valid_mempool, $device, 0, 'aos-device', 'Device Memory', '1', null, null);
 | 
						|
    }
 | 
						|
}
 |