mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
ed62ae876d
git-svn-id: http://www.observium.org/svn/observer/trunk@1087 61d68cd4-352d-0410-923a-c4978735b2b8
26 lines
877 B
PHP
Executable File
26 lines
877 B
PHP
Executable File
<?php
|
|
|
|
if($device['os'] == "ios" || $device['os_group'] == "ios") {
|
|
|
|
echo("CISCO-ENHANCED-MEMORY-POOL: ");
|
|
|
|
$array = snmpwalk_cache_multi_oid($device, "cempMemPoolEntry", NULL, "CISCO-ENHANCED-MEMPOOL-MIB");
|
|
|
|
if(is_array($array)) {
|
|
foreach($array[$device[device_id]] as $index => $entry) {
|
|
if(is_numeric($entry['cempMemPoolUsed']) && $entry['cempMemPoolValid'] == "true") {
|
|
list($entPhysicalIndex) = explode(".", $index);
|
|
$entPhysicalDescr = snmp_get($device, "entPhysicalDescr.".$entPhysicalIndex, "-Oqv", "ENTITY-MIB");
|
|
$descr = $entPhysicalDescr." - ".$entry['cempMemPoolName'];
|
|
|
|
$descr = str_replace("Cisco ", "", $descr);
|
|
$descr = str_replace("Network Processing Engine", "", $descr);
|
|
|
|
discover_mempool($valid_mempool, $device, $index, "cemp", $descr, "1", $entPhysicalIndex, NULL);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|