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

@ -6,48 +6,49 @@
*
* @package observium
* @subpackage web
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2021 Observium Limited
* @copyright (C) Adam Armstrong
*
*/
$sql = "SELECT * FROM `status`";
$sql .= " WHERE `device_id` = ? AND `status_deleted` = 0 ORDER BY `measured_entity_label`, `entPhysicalClass` DESC, `status_descr`;";
$sql = "SELECT * FROM `status`";
$sql .= " WHERE `device_id` = ? AND `status_deleted` = 0 ORDER BY `measured_entity_label`, `entPhysicalClass` DESC, `status_descr`;";
$statuses = dbFetchRows($sql, array($device['device_id']));
$statuses = dbFetchRows($sql, [ $device['device_id'] ]);
if (safe_count($statuses)) {
if (!safe_empty($statuses)) {
$box_args = [
'title' => 'Status Indicators',
'url' => generate_url(array('page' => 'device', 'device' => $device['device_id'], 'tab' => 'health', 'metric' => 'status')),
'icon' => $config['entities']['status']['icon'],
'url' => generate_url(['page' => 'device', 'device' => $device['device_id'], 'tab' => 'health', 'metric' => 'status']),
'icon' => $config['entities']['status']['icon'],
];
// show/hide ignored
$ignore = 0;
foreach ($statuses as $status) {
if ($status['status_event'] === 'ignore') {
$ignore++;
}
if ($status['status_event'] === 'ignore') {
$ignore++;
}
}
if ($ignore) {
$box_args['header-controls'] = [
'controls' => [
'hide' => [ 'text' => 'Show/Hide Ignored <span class="label">'.$ignore.'</span>', 'anchor' => TRUE,
'data' => ' onclick="$(\'.entity-status.disabled\').toggle();" ' ]
]
];
$box_args['header-controls'] = [
'controls' => [
'hide' => [ 'text' => 'Show/Hide Ignored <span class="label">' . $ignore . '</span>',
'anchor' => TRUE,
'data' => ' onclick="$(\'.entity-status.disabled\').toggle();" ']
]
];
}
echo generate_box_open($box_args);
echo('<table class="table table-condensed table-striped">');
foreach ($statuses as $status) {
//$status['status_descr'] = truncate($status['status_descr'], 48, '');
//$status['status_descr'] = truncate($status['status_descr'], 48, '');
print_status_row($status, $vars);
print_status_row($status, $vars);
}
echo("</table>");
echo generate_box_close();
}
}
// EOF