cellpadding = 3; $table->cellspacing = 3; $table->width = 600; $table->class = "databox"; $table->head = array (); $table->data = array (); $table->align = array (); $table->size = array (); $moduletype_name = get_moduletype_name (get_agentmodule_type ($module_id)); $offset = (int) get_parameter("offset"); $block_size = (int) $config["block_size"]; // The "columns" array is the number(and definition) of columns in the report: // $columns = array( // "COLUMN1" => array(ROW_FROM_DB_TABLE, FUNCTION_NAME_TO_FORMAT_THE_DATA, "align"=>COLUMN_ALIGNMENT, "width"=>COLUMN_WIDTH) // "COLUMN2" => array(ROW_FROM_DB_TABLE, FUNCTION_NAME_TO_FORMAT_THE_DATA, "align"=>COLUMN_ALIGNMENT, "width"=>COLUMN_WIDTH) // .... // ) // // For each row from the query, and for each column, we'll call the FUNCTION passing as argument // the value of the ROW. // $columns = array (); if ($moduletype_name == "log4x") { $table->width = 1100; $sql_body = sprintf ("FROM tagente_datos_log4x WHERE id_agente_modulo = %d AND utimestamp > %d ORDER BY utimestamp DESC", $module_id, get_system_time () - $period); $columns = array( "Delete" => array("id_tagente_datos_log4x", "format_delete_log4x", "align" => "center", "width" => "10px"), "Timestamp" => array("utimestamp", "format_timestamp", "align" => "center", "width" => "200px"), "Sev" => array("severity", "format_data", "align" => "center", "width" => "70px"), "Message" => array("message", "format_verbatim", "align" => "left", "width" => "400px"), "ST" => array("stacktrace", "format_data", "align" => "left", "width" => "400px") ); } else if (preg_match ("/string/", $moduletype_name)) { $sql_body = sprintf (" FROM tagente_datos_string WHERE id_agente_modulo = %d AND utimestamp > %d ORDER BY utimestamp DESC", $module_id, get_system_time () - $period); $columns = array( "Delete" => array("id_agente_datos", "format_delete_string", "align" => "center"), "Timestamp" => array("utimestamp", "format_timestamp", "align" => "center"), "Data" => array("datos", "format_data", "align" => "center"), "Time" => array("utimestamp", "format_time", "align" => "center") ); } else { $sql_body = sprintf (" FROM tagente_datos WHERE id_agente_modulo = %d AND utimestamp > %d ORDER BY utimestamp DESC", $module_id, get_system_time () - $period); $columns = array( "Delete" => array("id_agente_datos", "format_delete", "align" => "center"), "Timestamp" => array("utimestamp", "format_timestamp", "align" => "center"), "Data" => array("datos", "format_data", "align" => "center"), "Time" => array("utimestamp", "format_time", "align" => "center") ); } $sql = "SELECT * " . $sql_body; $sql_count = "SELECT count(*) " . $sql_body; $count = get_db_value_sql($sql_count); $sql .= " LIMIT " . $offset . "," . $block_size; $result = get_db_all_rows_sql ($sql); if ($result === false) { $result = array (); } echo "
" . $data . ""; } function format_timestamp($ts) { global $config; // This returns data with absolute user-defined timestamp format // and numeric by data managed with 2 decimals, and not using Graph format // (replacing 1000 by K and 1000000 by G, like version 2.x return date ($config["date_format"], $ts); } function format_delete($id) { global $period, $module_id, $config, $group; $txt = ""; if (give_acl ($config['id_user'], $group, "AW") ==1) { $txt = ''; } return $txt; } function format_delete_string($id) { global $period, $module_id, $config, $group; $txt = ""; if (give_acl ($config['id_user'], $group, "AW") ==1) { $txt = ''; } return $txt; } function format_delete_log4x($id) { global $period, $module_id, $config, $group; $txt = ""; if (give_acl ($config['id_user'], $group, "AW") ==1) { $txt = ''; } return $txt; } ?>