mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			760 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			760 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
// HOST-RESOURCES-MIB - Storage Objects
 | 
						|
if (!is_array($storage_cache['hrstorage'])) {
 | 
						|
    $storage_cache['hrstorage'] = snmpwalk_cache_oid($device, 'hrStorageEntry', null, 'HOST-RESOURCES-MIB:HOST-RESOURCES-TYPES');
 | 
						|
    if ($debug) {
 | 
						|
        print_r($storage_cache);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$entry = $storage_cache['hrstorage'][$storage[storage_index]];
 | 
						|
 | 
						|
$storage['units']       = $entry['hrStorageAllocationUnits'];
 | 
						|
$entry['hrStorageUsed'] = fix_integer_value($entry['hrStorageUsed']);
 | 
						|
$entry['hrStorageSize'] = fix_integer_value($entry['hrStorageSize']);
 | 
						|
$storage['used']        = ($entry['hrStorageUsed'] * $storage['units']);
 | 
						|
$storage['size']        = ($entry['hrStorageSize'] * $storage['units']);
 | 
						|
$storage['free']        = ($storage['size'] - $storage['used']);
 |