mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 16:04:35 +02:00
more cleanups and reindents, still a lot to come
git-svn-id: http://www.observium.org/svn/observer/trunk@1836 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -6,58 +6,59 @@ if ($device['os'] == "ios" || $device['os_group'] == "ios")
|
||||
{
|
||||
echo("CISCO-PROCESS-MIB : ");
|
||||
$processors_array = snmpwalk_cache_oid($device, "cpmCPU", NULL, "CISCO-PROCESS-MIB");
|
||||
if($debug) { print_r($processors_array); }
|
||||
if ($debug) { print_r($processors_array); }
|
||||
|
||||
foreach ($processors_array as $index => $entry)
|
||||
foreach ($processors_array as $index => $entry)
|
||||
{
|
||||
if (is_numeric($entry['cpmCPUTotal5minRev']) || is_numeric($entry['cpmCPUTotal5min']))
|
||||
if (is_numeric($entry['cpmCPUTotal5minRev']) || is_numeric($entry['cpmCPUTotal5min']))
|
||||
{
|
||||
$entPhysicalIndex = $entry['cpmCPUTotalPhysicalIndex'];
|
||||
|
||||
if(isset($entry['cpmCPUTotal5minRev'])) {
|
||||
if (isset($entry['cpmCPUTotal5minRev']))
|
||||
{
|
||||
$usage_oid = ".1.3.6.1.4.1.9.9.109.1.1.1.1.8." . $index;
|
||||
$usage = $entry['cpmCPUTotal5minRev'];
|
||||
} elseif(isset($entry['cpmCPUTotal5min'])) {
|
||||
} elseif (isset($entry['cpmCPUTotal5min'])) {
|
||||
$usage_oid = ".1.3.6.1.4.1.9.9.109.1.1.1.1.5." . $index;
|
||||
$usage = $entry['cpmCPUTotal5min'];
|
||||
}
|
||||
|
||||
if($entPhysicalIndex) {
|
||||
if ($entPhysicalIndex) {
|
||||
$descr_oid = "entPhysicalName." . $entPhysicalIndex;
|
||||
$descr = snmp_get($device, $descr_oid, "-Oqv", "ENTITY-MIB");
|
||||
}
|
||||
if(!$descr) { $descr = "Processor $index"; }
|
||||
if (!$descr) { $descr = "Processor $index"; }
|
||||
|
||||
$old_rrd = $config['rrd_dir'] . "/".$device['hostname']."/" . safename("cpmCPU-" . $index . ".rrd");
|
||||
$new_rrd = $config['rrd_dir'] . "/".$device['hostname']."/" . safename("processor-cpm-" . $index . ".rrd");
|
||||
|
||||
if (is_file($old_rrd))
|
||||
if (is_file($old_rrd))
|
||||
{
|
||||
shell_exec("mv -f $old_rrd $new_rrd");
|
||||
if($debug) { echo("$old_rrd $new_rrd"); }
|
||||
if ($debug) { echo("$old_rrd $new_rrd"); }
|
||||
echo("Moved RRD ");
|
||||
}
|
||||
|
||||
#echo("|".$descr."|");
|
||||
|
||||
if(!strstr($descr, "No") && !strstr($usage, "No") && $descr != "" )
|
||||
if (!strstr($descr, "No") && !strstr($usage, "No") && $descr != "" )
|
||||
{
|
||||
discover_processor($valid_processor, $device, $usage_oid, $index, "cpm", $descr, "1", $entry['juniSystemModuleCpuUtilPct'], $entPhysicalIndex, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!is_array($valid_processor['cpm']))
|
||||
if (!is_array($valid_processor['cpm']))
|
||||
{
|
||||
$avgBusy5 = snmp_get($device, ".1.3.6.1.4.1.9.2.1.58.0", "-Oqv");
|
||||
if (is_numeric($avgBusy5))
|
||||
if (is_numeric($avgBusy5))
|
||||
{
|
||||
discover_processor($valid_processor, $device, ".1.3.6.1.4.1.9.2.1.58.0", "0", "ios", "Processor", "1", $avgBusy5, NULL, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
## End Cisco Processors
|
||||
|
||||
unset ($processors_array);
|
||||
|
||||
?>
|
||||
?>
|
||||
Reference in New Issue
Block a user