mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
move mempools pollers into their own directory (includes/discovery/mempools/)
git-svn-id: http://www.observium.org/svn/observer/trunk@1518 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
31
includes/discovery/mempools/hrstorage.inc.php
Executable file
31
includes/discovery/mempools/hrstorage.inc.php
Executable file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
$storage_array = snmpwalk_cache_oid($device, "hrStorageEntry", NULL, "HOST-RESOURCES-MIB:HOST-RESOURCES-TYPES");
|
||||
|
||||
if(is_array($storage_array)) {
|
||||
echo("hrStorage : ");
|
||||
foreach($storage_array[$device[device_id]] as $index => $storage)
|
||||
{
|
||||
$fstype = $storage['hrStorageType'];
|
||||
$descr = $storage['hrStorageDescr'];
|
||||
$size = $storage['hrStorageSize'] * $storage['hrStorageAllocationUnits'];
|
||||
$used = $storage['hrStorageUsed'] * $storage['hrStorageAllocationUnits'];
|
||||
$units = $storage['hrStorageAllocationUnits'];
|
||||
$deny = 1;
|
||||
|
||||
if ($fstype == "hrStorageVirtualMemory" || $fstype == "hrStorageRam") { $deny = 0; }
|
||||
if ($device['os'] == "routeros" && $descr == "main memory") { $deny = 0; }
|
||||
|
||||
if(strstr($descr, "MALLOC") || strstr($descr, "UMA")) { $deny = 1; } ## Ignore FreeBSD INSANITY
|
||||
if(strstr($descr, "procfs") || strstr($descr, "/proc")) { $deny = 1; } ## Ignore ProcFS
|
||||
|
||||
|
||||
if(!$deny && is_numeric($index)) {
|
||||
discover_mempool($valid_mempool, $device, $index, "hrstorage", $descr, $units, NULL, NULL);
|
||||
}
|
||||
unset($deny, $fstype, $descr, $size, $used, $units, $storage_rrd, $old_storage_rrd);
|
||||
}
|
||||
unset($storage_array);
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user