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@1888 61d68cd4-352d-0410-923a-c4978735b2b8
39 lines
978 B
PHP
39 lines
978 B
PHP
<?php
|
|
|
|
global $valid_sensor;
|
|
|
|
if ($device['os'] == "netvision")
|
|
{
|
|
for ($i = 1; $i <= 3; $i++)
|
|
{
|
|
$current_oid = "1.3.6.1.4.1.4555.1.1.1.1.3.3.1.3.$i";
|
|
$descr = "Input Phase $i";
|
|
$current = snmp_get($device, $current_oid, "-Oqv");
|
|
$type = "netvision";
|
|
$precision = 1;
|
|
$index = $i;
|
|
$lowlimit = 0;
|
|
$warnlimit = NULL;
|
|
$limit = NULL;
|
|
|
|
discover_sensor($valid_sensor, 'current', $device, $current_oid, $index, $type, $descr, '10', '1', $lowlimit, NULL, NULL, NULL, $current);
|
|
}
|
|
|
|
for ($i = 1; $i <= 3; $i++)
|
|
{
|
|
$current_oid = "1.3.6.1.4.1.4555.1.1.1.1.4.4.1.3.$i";
|
|
$descr = "Output Phase $i";
|
|
$current = snmp_get($device, $current_oid, "-Oqv");
|
|
$type = "netvision";
|
|
$precision = 1;
|
|
$index = 100+$i;
|
|
$lowlimit = 0;
|
|
$warnlimit = NULL;
|
|
$limit = NULL;
|
|
|
|
discover_sensor($valid_sensor, 'current', $device, $current_oid, $index, $type, $descr, '10', '1', $lowlimit, NULL, NULL, NULL, $current);
|
|
}
|
|
}
|
|
|
|
?>
|