mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
if ($device['os'] == 'powerconnect') {
 | 
						|
    if (strpos($device["sysObjectID"], "enterprises.674.10895.3031") !== false) {
 | 
						|
        d_echo("Dell Powerconnect 55xx");
 | 
						|
        $usage = trim(snmp_get($device, '.1.3.6.1.4.1.89.1.7.0', '-Ovq'));
 | 
						|
        discover_processor($valid['processor'], $device, '.1.3.6.1.4.1.89.1.7.0', '0', 'powerconnect', 'Processor', '1', $usage, null, null);
 | 
						|
    } elseif (strpos($device["sysObjectID"], "enterprises.674.10895.3024") !== false) {
 | 
						|
        d_echo("Dell Powerconnect 8024F");
 | 
						|
        $usage = trim(snmp_get($device, '.1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.9.0', '-Ovq'), '"');
 | 
						|
        $usage = ltrim($usage, ' ');
 | 
						|
        if (substr($usage, 0, 5) == '5 Sec') {
 | 
						|
            discover_processor($valid['processor'], $device, '.1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.9.0', '0', 'powerconnect', 'Processor', '1', $usage, null, null);
 | 
						|
        }
 | 
						|
    } else {
 | 
						|
        $descr = 'Processor';
 | 
						|
        $usage = trim(snmp_get($device, 'dellLanExtension.6132.1.1.1.1.4.4.0', '-OQUvs', 'Dell-Vendor-MIB'), '"');
 | 
						|
        if (substr($usage, 0, 5) == '5 Sec') {
 | 
						|
            discover_processor($valid['processor'], $device, '.1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.4.0', '0', 'powerconnect', $descr, '1', $usage, null, null);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |