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

@ -4,60 +4,68 @@
*
* This file is part of Observium.
*
* @package observium
* @subpackage web
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2021 Observium Limited
* @package observium
* @subpackage web
* @copyright (C) Adam Armstrong
*
*/
if (!isset($attribs['juniper-firewall-mib'])) {
return;
}
echo generate_box_open();
if (isset($attribs['juniper-firewall-mib'])) {
echo '<table class="table table-striped-two table-condensed">';
echo '<table class="table table-striped-two table-condensed">';
if ($filters = safe_json_decode($attribs['juniper-firewall-mib'])) {
$json = str_decompress($attribs['juniper-firewall-mib']);
if (!$json) {
// Compat with old uncompressed
$json = $attribs['juniper-firewall-mib'];
}
if ($filters = safe_json_decode($json)) {
ksort($filters);
}
foreach ($filters as $filter => $counters) {
}
foreach ($filters as $filter => $counters) {
ksort($counters);
foreach ($counters AS $counter => $types)
{
foreach ($counters as $counter => $types) {
foreach($types as $type => $data)
{
echo '<tr><td><h3><i class="sprite-qos"></i> ' . $filter . ' | <i class="sprite-counter"></i>' . $counter . ' | '.$type.'</h3></td></tr>';
foreach ($types as $type => $data) {
echo '<tr><td><h3><i class="sprite-qos"></i> ' . $filter . ' | <i class="sprite-counter"></i>' . $counter . ' | ' . $type . '</h3></td></tr>';
echo '<tr>';
echo '<td>';
echo '<h4>Packets</h4>';
echo '<tr>';
echo '<td>';
echo '<h4>Packets</h4>';
$graph_array = array('type' => 'device_juniper-firewall-pkts',
'device' => $device['device_id'],
'filter' => safename($filter),
'counter' => safename($counter),
'counter_type' => safename($type)
);
$graph_array = ['type' => 'device_juniper-firewall-pkts',
'device' => $device['device_id'],
'filter' => safename($filter),
'counter' => safename($counter),
'counter_type' => safename($type)
];
print_graph_row($graph_array);
print_graph_row($graph_array);
echo '<h4>Bytes</h4>';
echo '<h4>Bytes</h4>';
$graph_array = array('type' => 'device_juniper-firewall-bits',
'device' => $device['device_id'],
'filter' => safename($filter),
'counter' => safename($counter),
'counter_type' => safename($type)
);
$graph_array = ['type' => 'device_juniper-firewall-bits',
'device' => $device['device_id'],
'filter' => safename($filter),
'counter' => safename($counter),
'counter_type' => safename($type)
];
print_graph_row($graph_array);
print_graph_row($graph_array);
echo '</td></tr>';
}
echo '</td></tr>';
}
}
}
}
echo '</table>';
}
echo '</table>';
unset($json, $filters);
// EOF