2013-10-30 Sergio Martin <sergio.martin@artica.es>
* 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
This commit is contained in:
parent
a4a91c765e
commit
b46ece08bf
|
@ -1,3 +1,8 @@
|
|||
2013-10-30 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* godmode/setup/performance.php: Added tip messages to
|
||||
advice possible conflicts of performance configuration
|
||||
|
||||
2013-10-30 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_api.php: fixed the output of data as csv when
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue