Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -5,37 +5,36 @@
*
* This file is part of Observium.
*
* @package observium
* @subpackage webui
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
* @package observium
* @subpackage webui
* @copyright (C) Adam Armstrong
*
*/
$cbqos_array = dbFetchRows('SELECT * FROM `ports_cbqos` WHERE `port_id` = ?', array($port['port_id']));
$cbqos_array = dbFetchRows('SELECT * FROM `ports_cbqos` WHERE `port_id` = ?', [$port['port_id']]);
foreach ($cbqos_array as $cbqos)
{
foreach ($cbqos_array as $cbqos) {
echo generate_box_open(array('title' => $cbqos['policy_name'].' / '.$cbqos['object_name'].' ('.$cbqos['direction'].')'));
echo generate_box_open(['title' => $cbqos['policy_name'] . ' / ' . $cbqos['object_name'] . ' (' . $cbqos['direction'] . ')']);
echo('<table class="table table-hover table-condensed table-striped">');
echo('<table class="table table-hover table-condensed table-striped">');
$graph_array['id'] = $cbqos['cbqos_id'];
$graph_array['id'] = $cbqos['cbqos_id'];
echo('<tr><td>');
echo('<h3>Packets</h3>');
$graph_array['type'] = 'cbqos_pkts';
print_graph_row($graph_array);
echo('<tr><td>');
echo('<h3>Packets</h3>');
$graph_array['type'] = 'cbqos_pkts';
print_graph_row($graph_array);
echo('<h3>Bits</h3>');
$graph_array['type'] = 'cbqos_bits';
print_graph_row($graph_array);
echo('<h3>Bits</h3>');
$graph_array['type'] = 'cbqos_bits';
print_graph_row($graph_array);
echo('</td></tr>');
echo('</td></tr>');
echo('</table>');
echo('</table>');
echo generate_box_close();
echo generate_box_close();
}