Files
librenms-librenms/includes/html/graphs/port/nupkts.inc.php
Tony Murray 1c379dcd05 Remove legacy function calls (#12651)
* massive inlines

* fix style and wtf

* remove rrdtool.inc.php include

* fix CommonFunctions namespace issues

* looking for missing class space, fix undefined class issues

* style fixes
2021-03-29 00:25:30 +02:00

31 lines
877 B
PHP

<?php
$rrd_file = get_port_rrdfile_path($device['hostname'], $port['port_id']);
$rrd_list[2]['filename'] = $rrd_file;
$rrd_list[2]['descr'] = $int['ifDescr'];
$rrd_list[2]['ds_in'] = 'INBROADCASTPKTS';
$rrd_list[2]['ds_out'] = 'OUTBROADCASTPKTS';
$rrd_list[2]['descr'] = 'Broadcast';
$rrd_list[2]['colour_area_in'] = '085F63';
$rrd_list[2]['colour_area_out'] = '49BEB7';
$rrd_list[4]['filename'] = $rrd_file;
$rrd_list[4]['descr'] = $int['ifDescr'];
$rrd_list[4]['ds_in'] = 'INMULTICASTPKTS';
$rrd_list[4]['ds_out'] = 'OUTMULTICASTPKTS';
$rrd_list[4]['descr'] = 'Multicast';
$rrd_list[4]['colour_area_in'] = 'FACF5A';
$rrd_list[4]['colour_area_out'] = 'FF5959';
$units = '';
$units_descr = 'Packets';
$total_units = 'pps';
$colours_in = 'purples';
$multiplier = '1';
$colours_out = 'oranges';
$nototal = 1;
include 'includes/html/graphs/generic_multi_seperated.inc.php';