Files
librenms-librenms/html/includes/graphs/port/poe.inc.php
PipoCanaja a1a13de0f6 feature: Added PoE graphs and improved PoE polling code (#8705)
* 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
2018-05-15 21:39:36 +01:00

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';