From dd5993fad260d35ef1bea9ffb0b9831a039cf5bf Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Wed, 30 Oct 2013 16:06:51 +0000 Subject: [PATCH] 2013-10-30 Sergio Martin * godmode/setup/performance.php: Added tip messages to advice possible conflicts of performance configuration git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8984 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/godmode/setup/performance.php | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 34e8ec7801..0a7bfcc2dd 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-10-30 Sergio Martin + + * godmode/setup/performance.php: Added tip messages to + advice possible conflicts of performance configuration + 2013-10-30 Miguel de Dios * include/functions_api.php: fixed the output of data as csv when diff --git a/pandora_console/godmode/setup/performance.php b/pandora_console/godmode/setup/performance.php index 7332409286..030cbe9646 100644 --- a/pandora_console/godmode/setup/performance.php +++ b/pandora_console/godmode/setup/performance.php @@ -42,7 +42,7 @@ $table->data = array (); $table->size[0] = '70%'; $table->size[1] = '30%'; -$table->data[1][0] = __('Max. days before delete events'); +$table->data[1][0] = __('Max. days before delete events') . ui_print_help_tip(__('If the compaction or purge of the data is more frequent than the events deletion, anomalies in module graphs could appear'), true); $table->data[1][1] = html_print_input_text ('event_purge', $config["event_purge"], '', 5, 5, true); $table->data[2][0] = __('Max. days before delete traps'); @@ -57,7 +57,7 @@ $table->data[4][1] = html_print_input_text ('string_purge', $config["string_purg $table->data[5][0] = __('Max. days before delete GIS data'); $table->data[5][1] = html_print_input_text ('gis_purge', $config["gis_purge"], '', 5, 5, true); -$table->data[6][0] = __('Max. days before purge'); +$table->data[6][0] = __('Max. days before purge') . ui_print_help_tip(__('Configure a purge period more frequent than a compact data period has no sense'), true); $table->data[6][1] = html_print_input_text ('days_purge', $config["days_purge"], '', 5, 5, true); $table->data[7][0] = __('Max. days before compact data');