Total Up Alert Ignored (Dev) Disabled / Shut
Devices up down ignored disabled
Ports up down () ignored shutdown
Sensors ok ignored disabled
Statuses ok ignored disabled
Counters ok ignored disabled
0): $check['class'] = "red"; $check['table_tab_colour'] = "#cc0000"; $check['html_row_class'] = "error"; break; case ($cache['alert_entries']['delay'] > 0): $check['class'] = "orange"; $check['table_tab_colour'] = "#ff6600"; $check['html_row_class'] = "warning"; break; case ($cache['alert_entries']['suppress'] > 0): $check['class'] = "purple"; $check['table_tab_colour'] = "#740074"; $check['html_row_class'] = "suppressed"; break; case ($cache['alert_entries']['up'] > 0): $check['class'] = "green"; $check['table_tab_colour'] = "#194b7f"; $check['html_row_class'] = ""; break; default: $check['class'] = "gray"; $check['table_tab_colour'] = "#555555"; $check['html_row_class'] = "disabled"; } $check['status_numbers'] = ' ' . $cache['alert_entries']['up'] . '/ ' . $cache['alert_entries']['suppress'] . '/ ' . $cache['alert_entries']['down'] . '/ ' . $cache['alert_entries']['delay'] . '/ ' . $cache['alert_entries']['unknown'] . ''; ?>
Ok Fail Delay Suppress Other
Alerts
= 5 && !isset($hide_group_bar)) { $navbar = []; $navbar['class'] = 'navbar-narrow'; $navbar['brand'] = 'Groups'; $navbar['style'] = 'margin-top: 10px'; $navbar['community'] = FALSE; $groups = get_groups_by_type($config['wui']['groups_list']); foreach ($config['wui']['groups_list'] as $entity_type) { if (!isset($config['entities'][$entity_type])) { continue; } // Skip unknown types $navbar['options'][$entity_type]['icon'] = $config['entities'][$entity_type]['icon']; $navbar['options'][$entity_type]['text'] = nicecase($entity_type); foreach ($groups[$entity_type] as $group) { $navbar['options'][$entity_type]['suboptions'][$group['group_id']]['text'] = escape_html($group['group_name']); $navbar['options'][$entity_type]['suboptions'][$group['group_id']]['icon'] = $config['entities'][$entity_type]['icon']; $navbar['options'][$entity_type]['suboptions'][$group['group_id']]['url'] = generate_url(['page' => 'group', 'group_id' => $group['group_id']]); if ($vars['group_id'] == $group['group_id']) { $navbar['options'][$entity_type]['suboptions'][$group['group_id']]['class'] = "active"; $navbar['options'][$entity_type]['class'] = "active"; } } } print_navbar($navbar); unset($navbar); } ?>