mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
23 lines
747 B
PHP
23 lines
747 B
PHP
<?php
|
|
|
|
// Ignore this discovery module if we have already discovered things in CISCO-ENHANCED-MEMPOOL-MIB. Dirty duplication.
|
|
|
|
$cemp_count = dbFetchCell("SELECT COUNT(*) FROM `mempools` WHERE `device_id` = ? AND `mempool_type` = 'cemp'",array($device['device_id']));
|
|
|
|
if (($device['os_group'] == "cisco") && $cemp_count == "0")
|
|
{
|
|
echo("OLD-CISCO-MEMORY-POOL: ");
|
|
|
|
$cmp_array = snmpwalk_cache_oid($device, 'ciscoMemoryPool', NULL, "CISCO-MEMORY-POOL-MIB");
|
|
|
|
if (is_array($cmp_array)) {
|
|
foreach ($cmp_array as $index => $cmp) {
|
|
if (is_numeric($cmp['ciscoMemoryPoolUsed']) && is_numeric($index)) {
|
|
discover_mempool($valid_mempool, $device, $index, "cmp", $cmp['ciscoMemoryPoolName'], "1", NULL, NULL);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|