' . html_print_image ("images/setup.png", true, array ("title" =>__('Setup'))) . ''; if($tab == 'setup') $setuptab['active'] = true; else $setuptab['active'] = false; $onheader = array('setup' => $setuptab); } ui_print_page_header ( __("Agent detail"), "images/bricks.png", false, "agent_status", false, $onheader); echo '
'; echo ''; echo '
'.__('Group').': '; $groups = users_get_groups (); html_print_select_groups(false, "AR", true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false, 'width:180px'); echo ''.__('Group recursion').': '; html_print_checkbox ("recursion", 1, $recursion, false, false, 'this.form.submit()'); echo ''; echo __('Free text for search').' (*): '; html_print_input_text ("search", $search, '', 15); echo ''; $fields = array (); $fields[0] = __('Normal'); $fields[1] = __('Warning'); $fields[2] = __('Critical'); $fields[3] = __('Unknown'); $fields[4] = __('Not normal'); $fields[5] = __('Not init'); echo ''.__('Agent status').': '; html_print_select ($fields, "status", $status, 'this.form.submit()', __('All'), -1, false, false, true, '', false, 'width: 90px;'); echo ''; html_print_submit_button (__('Search'), "srcbutton", '', array ("class" => "sub search")); echo ' 
'; if ($search != ""){ $filter = array ("string" => '%' . $search . '%'); } else { $filter = array (); } $sortField = get_parameter('sort_field'); $sort = get_parameter('sort', 'none'); $selected = 'border: 1px solid black;'; $selectNameUp = ''; $selectNameDown = ''; $selectOsUp = ''; $selectOsDown = ''; $selectIntervalUp = ''; $selectIntervalDown = ''; $selectGroupUp = ''; $selectGroupDown = ''; $selectLastContactUp = ''; $selectLastContactDown = ''; $order = null; switch ($sortField) { case 'name': switch ($sort) { case 'up': $selectNameUp = $selected; $order = array('field' => 'nombre', 'order' => 'ASC'); break; case 'down': $selectNameDown = $selected; $order = array('field' => 'nombre', 'order' => 'DESC'); break; } break; case 'os': switch ($sort) { case 'up': $selectOsUp = $selected; $order = array('field' => 'id_os', 'order' => 'ASC'); break; case 'down': $selectOsDown = $selected; $order = array('field' => 'id_os', 'order' => 'DESC'); break; } break; case 'interval': switch ($sort) { case 'up': $selectIntervalUp = $selected; $order = array('field' => 'intervalo', 'order' => 'ASC'); break; case 'down': $selectIntervalDown = $selected; $order = array('field' => 'intervalo', 'order' => 'DESC'); break; } break; case 'group': switch ($sort) { case 'up': $selectGroupUp = $selected; $order = array('field' => 'id_grupo', 'order' => 'ASC'); break; case 'down': $selectGroupDown = $selected; $order = array('field' => 'id_grupo', 'order' => 'DESC'); break; } break; case 'last_contact': switch ($sort) { case 'up': $selectLastContactUp = $selected; $order = array('field' => 'ultimo_contacto', 'order' => 'ASC'); break; case 'down': $selectLastContactDown = $selected; $order = array('field' => 'ultimo_contacto', 'order' => 'DESC'); break; } break; default: $selectNameUp = $selected; $selectNameDown = ''; $selectOsUp = ''; $selectOsDown = ''; $selectIntervalUp = ''; $selectIntervalDown = ''; $selectGroupUp = ''; $selectGroupDown = ''; $selectLastContactUp = ''; $selectLastContactDown = ''; $order = array('field' => 'nombre', 'order' => 'ASC'); break; } $search_sql = ''; if ($search != ""){ $search_sql = " AND ( nombre COLLATE utf8_general_ci LIKE '%$search%' OR direccion LIKE '%$search%') "; } // Show only selected groups if ($group_id > 0) { $groups = $group_id; $agent_names = agents_get_group_agents ($group_id, $filter, "upper", false, $recursion); if ($recursion) { $groups = groups_get_id_recursive($group_id, true); } } else { $groups = array(); $user_group = users_get_groups($config["id_user"], "PM"); $groups = array_keys($user_group); $user_group = users_get_groups($config["id_user"], "AR"); $groups = array_unique(array_merge($groups, array_keys($user_group))); $agent_names = agents_get_group_agents($groups, $filter, "upper"); } $total_agents = 0; $agents = false; if (! empty ($agent_names)) { $total_agents = agents_get_agents(array ('id_agente' => array_keys ($agent_names), 'order' => 'nombre ASC', 'disabled' => 0, 'id_grupo' => $groups), array ('COUNT(*) as total')); $total_agents = isset ($total_agents[0]['total']) ? $total_agents[0]['total'] : 0; $agents = agents_get_agents(array ('id_agente' => array_keys ($agent_names), 'order' => 'nombre ASC', 'id_grupo' => $groups, /* 'offset' => (int) get_parameter ('offset'), 'limit' => (int) $config['block_size'] */ ), array ('id_agente', 'id_grupo', 'id_os', 'ultimo_contacto', 'intervalo', 'comentarios description'), 'AR', $order); } if (empty ($agents)) { $agents = array (); } $result_agents = array(); // This will be use above to simulate pagination $i = 0; $limit_agents = $offset + $config['block_size']; // Filter by agents status if ($status != -1){ $result_agents_tmp = array(); foreach ($agents as $agent_filter){ $filter_by_status = false; $agent_stat = reporting_get_agent_module_info ($agent_filter["id_agente"]); switch ($status){ // Normal case 0: if ($agent_stat['status'] != STATUS_AGENT_OK) $filter_by_status = true; break; // Warning case 1: if ($agent_stat['status'] != STATUS_AGENT_WARNING) $filter_by_status = true; break; // Critical case 2: if ($agent_stat['status'] != STATUS_AGENT_CRITICAL) $filter_by_status = true; break; // Unknown case 3: if ($agent_stat['status'] != STATUS_AGENT_DOWN) $filter_by_status = true; break; // Not normal case 4: if ($agent_stat['status'] == STATUS_AGENT_OK) $filter_by_status = true; break; // Not init case 5: if ($agent_stat['status'] != STATUS_AGENT_NO_DATA) $filter_by_status = true; break; } // If status is different from filter, don't show agent if (! $filter_by_status) $result_agents_tmp[] = $agent_filter; } // Recalculate total agents if (! empty ($result_agents_tmp)) $total_agents = count($result_agents_tmp); else $total_agents = 0; // Simulate pagination foreach ($result_agents_tmp as $agent_filter_off){ if ($i >= $offset and $i < $limit_agents) $result_agents[] = $agent_filter_off; $i++; } } else { // Simulate pagination foreach ($agents as $agent_filter){ if ($i >= $offset and $i < $limit_agents) $result_agents[] = $agent_filter; $i++; } } // Prepare pagination ui_pagination ($total_agents, ui_get_url_refresh (array ('group_id' => $group_id, 'recursion' => $recursion, 'search' => $search, 'sort_field' => $sortField, 'sort' => $sort, 'status' => $status))); // Show data. $table->cellpadding = 4; $table->cellspacing = 4; $table->width = "98%"; $table->class = "databox"; $table->head = array (); $table->head[0] = __('Agent'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp, "alt" => "up")) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown, "alt" => "down")) . ''; $table->head[1] = __('Description'); $table->head[2] = __('OS'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectOsUp, "alt" => "up")) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectOsDown, "alt" => "down")) . ''; $table->head[3] = __('Interval'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectIntervalUp, "alt" => "up")) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectIntervalDown, "alt" => "down")) . ''; $table->head[4] = __('Group'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectGroupUp, "alt" => "up")) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectGroupDown, "alt" => "down")) . ''; $table->head[5] = __('Modules'); $table->head[6] = __('Status'); $table->head[7] = __('Alerts'); $table->head[8] = __('Last contact'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectLastContactUp, "alt" => "up")) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectLastContactDown, "alt" => "down")) . ''; $table->align = array (); $table->align[2] = "center"; $table->align[3] = "center"; $table->align[4] = "center"; $table->align[5] = "center"; $table->align[6] = "center"; $table->align[7] = "center"; $table->align[8] = "right"; $table->style = array(); $table->style[0] = 'width: 9%'; $table->style[1] = 'width: 11%'; $table->style[2] = 'width: 7%'; $table->style[3] = 'width: 10%'; $table->style[4] = 'width: 9%'; $table->style[5] = 'width: 10%'; $table->style[6] = 'width: 6%'; $table->style[7] = 'width: 6%'; $table->style[8] = 'width: 15%'; $table->data = array (); $rowPair = true; $iterator = 0; foreach ($result_agents as $agent) { if ($rowPair) $table->rowclass[$iterator] = 'rowPair'; else $table->rowclass[$iterator] = 'rowOdd'; $rowPair = !$rowPair; $iterator++; $agent_info = reporting_get_agent_module_info ($agent["id_agente"]); $data = array (); $data[0] = ''; $data[0] .= ''; $data[0] .= ui_print_agent_name($agent["id_agente"], true, 60, 'font-size:6.5pt !important;', true); $data[0] .= ''; $data[0] .= ''; /*if (check_acl ($config['id_user'], $agent["id_grupo"], "AW")) { $data[0] .= ''; $data[0] .= html_print_image ("images/setup.png", true, array ("border" => 0, "width" => 16)); $data[0] .= ' '; }*/ $data[1] = ui_print_truncate_text($agent["description"], 30, false, true, true, '[…]', 'font-size: 6.5pt'); $data[2] = ui_print_os_icon ($agent["id_os"], false, true); //The interval we are thinking that it must be the agent interval in this //cell and it'snt the interval of modules. // if ($agent_info["interval"] > $agent["intervalo"]) { // $data[2] = ''.$agent_info["interval"].''; // } else { // $data[2] = $agent["intervalo"]; // } $data[3] = $agent["intervalo"]; $data[4] = ui_print_group_icon ($agent["id_grupo"], true); $data[5] = ''; $data[5] .= $agent_info["modules"]; if ($agent_info["monitor_alertsfired"] > 0) $data[5] .= ' : '.$agent_info["monitor_alertsfired"].''; if ($agent_info["monitor_critical"] > 0) $data[5] .= ' : '.$agent_info["monitor_critical"].''; if ($agent_info["monitor_warning"] > 0) $data[5] .= ' : '.$agent_info["monitor_warning"].''; if ($agent_info["monitor_unknown"] > 0) $data[5] .= ' : '.$agent_info["monitor_unknown"].''; if ($agent_info["monitor_normal"] > 0) $data[5] .= ' : '.$agent_info["monitor_normal"].''; $data[5] .= ''; $data[6] = $agent_info["status_img"]; $data[7] = $agent_info["alert_img"]; $last_time = strtotime ($agent["ultimo_contacto"]); $now = time (); $diferencia = $now - $last_time; $time = ui_print_timestamp ($last_time, true, array('style' => 'font-size:6.5pt')); $style = ''; if ($diferencia > ($agent["intervalo"] * 2)) $data[8] = ''.$time.''; else $data[8] = $time; // This old code was returning "never" on agents without modules, BAD !! // And does not print outdated agents in red. WRONG !!!! // $data[7] = ui_print_timestamp ($agent_info["last_contact"], true); array_push ($table->data, $data); } if (!empty ($table->data)) { html_print_table ($table); ui_pagination ($total_agents, ui_get_url_refresh (array ('group_id' => $group_id, 'search' => $search, 'sort_field' => $sortField, 'sort' => $sort, 'status' => $status))); unset ($table); } else { echo '
'.__('There are no defined agents').'
'; } /* Godmode controls SHOULD NOT BE HERE if (check_acl ($config['id_user'], 0, "LM") || check_acl ($config['id_user'], 0, "AW") || check_acl ($config['id_user'], 0, "PM") || check_acl ($config['id_user'], 0, "DM") || check_acl ($config['id_user'], 0, "UM")) { echo '
'; html_print_input_hidden ('new_agent', 1); html_print_submit_button (__('Create agent'), 'crt', false, 'class="sub next"'); echo '
'; } */ ?>