diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index c3e166a4e2..3739d379b4 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -284,7 +284,7 @@ if ($get_module_detail) { } else if (is_numeric($row[$attr[0]]) && !modules_is_string_type($row['module_type']) ) { - $data[] = (double) $row[$attr[0]]; + $data[] = remove_right_zeros(number_format($row[$attr[0]], $config['graph_precision'])); } else { if ($row[$attr[0]] == '') { @@ -854,7 +854,6 @@ if ($list_modules) { modules_get_status($module['id_agente_modulo'], $module['estado'], $module_value, $status, $title); - $data[5] = ui_print_status_image($status, $title, true); if (!$show_context_help_first_time) { $show_context_help_first_time = true; @@ -864,7 +863,6 @@ if ($list_modules) { } } - if ($module["id_tipo_modulo"] == 24) { // log4x switch($module["datos"]) { diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 0d2652de11..b599b2a2ab 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -344,10 +344,10 @@ switch ($action) { $return = array(); if ($returnValue_value[1] != "") { - $return['value'] = number_format($returnValue_value[0], $config['graph_precision']) . " " . $returnValue_value[1]; + $return['value'] = remove_right_zeros(number_format($returnValue_value[0], $config['graph_precision'])) . " " . $returnValue_value[1]; } else { - $return['value'] = number_format($returnValue_value[0], $config['graph_precision']); + $return['value'] = remove_right_zeros(number_format($returnValue_value[0], $config['graph_precision'])); } $return['max_percentile'] = $layoutData['height']; $return['width_percentile'] = $layoutData['width']; diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index a64adabc01..d3819d53fc 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -2654,4 +2654,9 @@ function pandora_setlocale() { setlocale(LC_ALL, str_replace(array_keys($replace_locale), $replace_locale, $user_language)); } + +function remove_right_zeros ($value) { + $value_to_return = rtrim($value, "0"); + return rtrim($value_to_return, "."); +} ?> diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index b1638619d6..5f10a5b4ac 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -353,7 +353,7 @@ function reporting_html_SLA($table, $item, $mini) { $row = array(); $row[] = $sla['agent']; $row[] = $sla['module']; - $row[] = number_format($sla['max'], $config['graph_precision']) . " / " . number_format($sla['min'], $config['graph_precision']); + $row[] = remove_right_zeros(number_format($sla['max'], $config['graph_precision'])) . " / " . remove_right_zeros(number_format($sla['min'], $config['graph_precision'])); $row[] = round($sla['sla_limit'], 2) . "%"; if ($sla['sla_value_unknown']) { @@ -380,7 +380,7 @@ function reporting_html_SLA($table, $item, $mini) { $row = array(); $row[] = $sla['agent']; $row[] = $sla['module']; - $row[] = number_format($sla['max'], $config['graph_precision']) . " / " . number_format($sla['min'], $config['graph_precision']); + $row[] = remove_right_zeros(number_format($sla['max'], $config['graph_precision'])) . " / " . remove_right_zeros(number_format($sla['min'], $config['graph_precision'])); $row[] = round($sla['sla_limit'], 2) . "%"; if ($sla['sla_value_unknown']) { @@ -1509,13 +1509,13 @@ function reporting_html_monitor_report($table, $item, $mini) { '
'; $table1->data['data']['ok'] .= html_print_image("images/module_ok.png", true) . ' ' . - __('OK') . ': ' . number_format($item['data']["ok"]["formated_value"], $config['graph_precision']).' %
'; + __('OK') . ': ' . remove_right_zeros(number_format($item['data']["ok"]["formated_value"], $config['graph_precision'])).' %'; $table1->data['data']['fail'] = ''; $table1->data['data']['fail'] .= html_print_image("images/module_critical.png", true) . ' ' . - __('Not OK') . ': ' . number_format($item['data']["fail"]["formated_value"], $config['graph_precision']) . ' % ' . '
'; + __('Not OK') . ': ' . remove_right_zeros(number_format($item['data']["fail"]["formated_value"], $config['graph_precision'])) . ' % ' . ''; } $table->data['module']['cell'] = html_print_table($table1, true); @@ -1753,10 +1753,10 @@ function reporting_html_availability(&$table, $item) { $table_row[] = $row['availability_item']; $table_row[] = $row['checks']; $table_row[] = $row['failed']; - $table_row[] = number_format($row['fail'], $config['graph_precision']); + $table_row[] = remove_right_zeros(number_format($row['fail'], $config['graph_precision'])); $table_row[] = $row['poling_time']; $table_row[] = $row['time_unavaliable']; - $table_row[] = number_format($row['ok'], $config['graph_precision']); + $table_row[] = remove_right_zeros(number_format($row['ok'], $config['graph_precision'])); } else { if ($item['date']['to'] > $the_first_men_time) { @@ -1765,10 +1765,10 @@ function reporting_html_availability(&$table, $item) { $table_row[] = $row['availability_item']; $table_row[] = $row['checks']; $table_row[] = $row['failed']; - $table_row[] = number_format($row['fail'], $config['graph_precision']); + $table_row[] = remove_right_zeros(number_format($row['fail'], $config['graph_precision'])); $table_row[] = $row['poling_time']; $table_row[] = $row['time_unavaliable']; - $table_row[] = number_format($row['ok'], $config['graph_precision']); + $table_row[] = remove_right_zeros(number_format($row['ok'], $config['graph_precision'])); } else { $same_agent_in_resume = $row['agent']; @@ -1818,10 +1818,10 @@ function reporting_html_availability(&$table, $item) { $table1->data[] = array( 'max_text' => $item['resume']['min_text'], - 'max' => number_format($item['resume']['max'], $config['graph_precision']) . "%", - 'avg' => number_format($item['resume']['avg'], $config['graph_precision']) . "%", + 'max' => remove_right_zeros(number_format($item['resume']['max'], $config['graph_precision'])) . "%", + 'avg' => remove_right_zeros(number_format($item['resume']['avg'], $config['graph_precision'])) . "%", 'min_text' => $item['resume']['max_text'], - 'min' => number_format($item['resume']['min'], $config['graph_precision']) . "%" + 'min' => remove_right_zeros(number_format($item['resume']['min'], $config['graph_precision'])) . "%" ); $table->colspan[2][0] = 3; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 7b9bffd7ca..22bc53f889 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1016,16 +1016,16 @@ function visual_map_print_item($mode = "read", $layoutData, $returnValue_value = explode(' ', $value); if ($returnValue_value[1] != "") { - $value = number_format($returnValue_value[0], $config['graph_precision']) . " " . $returnValue_value[1]; + $value = remove_right_zeros(number_format($returnValue_value[0], $config['graph_precision'])) . " " . $returnValue_value[1]; } else { - $value = number_format($returnValue_value[0], $config['graph_precision']); + $value = remove_right_zeros(number_format($returnValue_value[0], $config['graph_precision'])); } } else { // If the value is a string, dont format it if (!is_string($value)) { - $value = format_for_graph($value, $config['graph_precision']); + $value = remove_right_zeros(format_for_graph($value, $config['graph_precision'])); } } diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 9dc16ed161..9829f15f09 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -56,6 +56,7 @@ function include_javascript_dependencies_flot_graph($return = false) { ui_get_full_url($metaconsole_hack . '/include/graphs/flot/pandora.flot.js') .'">'; $output .= "