mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@1327 61d68cd4-352d-0410-923a-c4978735b2b8
29 lines
743 B
PHP
29 lines
743 B
PHP
<?php
|
|
|
|
global $valid_fan;
|
|
|
|
## Areca Fanspeeds
|
|
if ($device['os'] == "areca")
|
|
{
|
|
$oids = snmp_walk($device, "1.3.6.1.4.1.18928.1.2.2.1.9.1.2", "-OsqnU", "");
|
|
if ($debug) { echo($oids."\n"); }
|
|
if ($oids) echo("Areca ");
|
|
$precision = 1;
|
|
$type = "areca";
|
|
foreach(explode("\n", $oids) as $data)
|
|
{
|
|
$data = trim($data);
|
|
if ($data)
|
|
{
|
|
list($oid,$descr) = explode(" ", $data,2);
|
|
$split_oid = explode('.',$oid);
|
|
$index = $split_oid[count($split_oid)-1];
|
|
$oid = "1.3.6.1.4.1.18928.1.2.2.1.9.1.3." . $index;
|
|
$current = snmp_get($device, $oid, "-Oqv", "") / $precision;
|
|
discover_fan($valid_fan,$device, $oid, $index, $type, trim($descr,'"'), $precision, NULL, NULL, $current);
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|