mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Poe Polling Code, Poe Graphs, and Huawei MIB * Reverting the reindent done after pre-commit script * Cleaning of code not used for Cisco IOS, removal of untested Procurve code, and restore of legacy generic code (tested with Cisco+huawei) * Rename MIB file * Rearranged duplicated code * Cleaning of variable not used * Cleaning of commented code after night validation in test environnement * Cleaning after pre-commit.php comments * test data with PoE oids for huawei 5720 * test data with PoE oids for cisco 2960X
29 lines
652 B
PHP
29 lines
652 B
PHP
<?php
|
|
|
|
$oids = array(
|
|
'PortConsumption',
|
|
'PortPwrAvailable',
|
|
'PortPwrAllocated',
|
|
'PortMaxPwrDrawn',
|
|
);
|
|
|
|
$i = 0;
|
|
$rrd_filename = get_port_rrdfile_path($device['hostname'], $port['port_id'], 'poe');
|
|
|
|
if (rrdtool_check_rrd_exists($rrd_filename)) {
|
|
foreach ($oids as $oid) {
|
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
|
$rrd_list[$i]['descr'] = substr($oid, 4);
|
|
$rrd_list[$i]['ds'] = $oid;
|
|
$i++;
|
|
}
|
|
}
|
|
|
|
$colours = 'mixed';
|
|
$nototal = 1;
|
|
$unit_text = 'W';
|
|
$divider = 1000;
|
|
$scale_min = 0;
|
|
|
|
require 'includes/graphs/generic_v3_multiline_float.inc.php';
|