diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 94ef771c28..b91f4e4278 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,12 @@ +2011-11-03 Juan Manuel Ramon + + * include/functions_reporting.php + godmode/reporting/reporting_builder.preview.php + godmode/reporting/reporting_builder.php + godmode/reporting/reporting_builder.item_editor.php: Added selector + for report's items in order to choose the report begin date and + added combo for sort SLA elements. + 2011-10-29 Junichi Satoh * include/help/ja/help_projection_graph.php, diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 1a22b99dca..7e1377a095 100644 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -27,6 +27,11 @@ $show_graph_options[0] = __('Only table'); $show_graph_options[1] = __('Table & Graph'); $show_graph_options[2] = __('Only graph'); +// SLA sorting options +$show_sort_options = array(); +$show_sort_options[1] = __('Ascending'); +$show_sort_options[2] = __('Descending'); + enterprise_include('/godmode/reporting/reporting_builder.item_editor.php'); require_once ($config['homedir'].'/include/functions_agents.php'); if (enterprise_include_once ('include/functions_metaconsole.php')) { @@ -150,6 +155,8 @@ switch ($action) { $time_from = $item['time_from']; $time_to = $item['time_to']; $show_graph = $item['show_graph']; + // 'top_n' filed will be reused for SLA sort option + $sla_sorted_by = $item['top_n']; break; case 'monitor_report': $description = $item['description']; @@ -581,6 +588,10 @@ html_print_input_hidden('id_item', $idItem); + + + + data[1][1] .= html_print_submit_button (__('Update'), 'date_submit', fal echo '
'; html_print_table ($table); html_print_input_hidden ('id_report', $id_report); -echo '
'; echo '
'; echo html_print_image("images/wait.gif", true, array("border" => '0')) . '
'; @@ -99,6 +98,10 @@ $(document).ready (function () { $("#loading").slideUp (); $("#text-time").timeEntry ({spinnerImage: 'images/time-entry.png', spinnerSize: [20, 20, 0]}); $("#text-date").datepicker (); + + $('[id^=text-date_init_]').datepicker (); + $('[id^=text-time_init_]').timeEntry ({spinnerImage: 'images/time-entry.png', spinnerSize: [20, 20, 0]}); + $.datepicker.regional[""]; }); @@ -151,4 +154,5 @@ foreach ($contents as $content) { echo "
"; flush (); } -?> \ No newline at end of file +echo ''; +?> diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 9d341b8f90..5606bc70c1 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -1983,6 +1983,44 @@ function reporting_get_agent_module_info ($id_agent, $filter = false) { return $return; } +/** + * This is the callback sorting function for SLA values descending + * + * @param array $a Array element 1 to compare + * @param array $b Array element 2 to compare + * + */ +function sla_value_desc_cmp($a, $b) +{ + // This makes 'Unknown' values the lastest + if (preg_match('/^(.)*Unknown(.)*$/', $a[5])) + $a[6] = -1; + + if (preg_match('/^(.)*Unknown(.)*$/', $b[5])) + $b[6] = -1; + + return ($a[6] < $b[6])? 1 : 0; +} + +/** + * This is the callback sorting function for SLA values ascending + * + * @param array $a Array element 1 to compare + * @param array $b Array element 2 to compare + * + */ +function sla_value_asc_cmp($a, $b) +{ + // This makes 'Unknown' values the lastest + if (preg_match('/^(.)*Unknown(.)*$/', $a[5])) + $a[6] = -1; + + if (preg_match('/^(.)*Unknown(.)*$/', $b[5])) + $b[6] = -1; + + return ($a[6] > $b[6])? 1 : 0; +} + /** * This function is used once, in reporting_viewer.php, the HTML report render * file. This function proccess each report item and write the render in the @@ -2030,6 +2068,15 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f $agent_name = agents_get_name($content['id_agent']); } + // Calculations in order to modify init date of the report + $date_init = get_parameter('date_init_' . $content['id_rc'], date ('Y-m-j',$report['datetime'] - $content['period'])); + $time_init = get_parameter('time_init_' . $content['id_rc'], date ('h:iA',$report['datetime'] - $content['period'])); + $datetime_init = strtotime ($date_init.' '.$time_init); + $new_interval = $report['datetime'] - $datetime_init; + if ($new_interval != $content['period']) { + $content['period'] = $new_interval; + } + switch ($content["type"]) { case 1: case 'simple_graph': @@ -2344,6 +2391,8 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f $data[4] .= format_numeric ($sla_value, 2). "%"; } $data[4] .= ""; + // This column will be used temporary for sort data + $data[6] = format_numeric ($sla_value, 2); array_push ($table1->data, $data); } @@ -2351,7 +2400,22 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f //Restore db connection metaconsole_restore_db(); } + } +//html_debug_print($table1->data); + // SLA items sorted descending () + if ($content['top_n'] == 2){ + usort($table1->data, "sla_value_desc_cmp"); } + // SLA items sorted ascending + else if ($content['top_n'] == 1){ + usort($table1->data, "sla_value_asc_cmp"); + } +//html_debug_print($table1->data); + // Delete temporary column used to sort SLA data + for ($i=0; $i < count($table1->data); $i++) { + unset($table1->data[$i][6]); + } + $table->colspan[2][0] = 3; if ($show_graph == 0 || $show_graph == 1) { $data = array(); @@ -3948,6 +4012,20 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f if (($config ['metaconsole'] == 1) && $server_name != '') { metaconsole_restore_db(); } + + // Adds date/time control to update initial interval report + $table->colspan[3][0] = 3; +// $table->data[3][0] = '
'; + $table->data[3][0] .= '' . __('Date') . '' . ui_print_help_tip(__('This is the report start date'), true) . '     '; + $table->data[3][0] .= html_print_input_text ('date_init_' . $content['id_rc'], $date_init, '', 12, 10, true). ' '; + $table->data[3][0] .= html_print_input_text ('time_init_' . $content['id_rc'], $time_init, '', 7, 7, true). ' '; + $table->data[3][0] .= html_print_submit_button (__('Update'), 'date_submit_init', false, 'class="sub next"', true); + $table->data[3][0] .= html_print_input_hidden ('id_report_content_' . $content['id_rc'], 1, true); + +/* if (!isset(get_parameter('id_rc_list')){ + $table->data[3][0] .= html_print_input_hidden ('id_rc_list', $id_rc_list . ',' . $content['id_rc'], true); + }*/ +// $table->data[3][0] .= '
'; } /**