2011-10-28 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* include/help/en/help_projection_graph.php
	include/help/en/help_prediction_date.php
	include/help/es/help_projection_graph.php
	include/help/es/help_prediction_date.php
	images/help/prediction_date.png
	images/help/projection_periods.png
	godmode/reporting/reporting_builder.item_editor.php: Added 
	contextual help.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5094 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-10-28 09:09:53 +00:00
parent 818db4152d
commit 56e24ddacd
7 changed files with 69 additions and 3 deletions

View File

@ -366,15 +366,15 @@ html_print_input_hidden('id_item', $idItem);
<td style=""><?php html_print_extended_select_for_time ($intervals, 'period', $period, '', '', '0', 10); echo __(" seconds."); ?></td>
</tr>
<tr id="row_period1" style="" class="datos">
<td style="vertical-align: top;"><?php echo __('Period'); ?></td>
<td style="vertical-align: top;"><?php echo __('Period'); if ($type == 'projection_graph'){ echo ui_print_help_icon('projection_graph', true); }else{ echo ui_print_help_icon('prediction_date', true); } ?></td>
<td style=""><?php html_print_extended_select_for_time ($intervals_1, 'period1', $period_pg, '', '', '0', 10); echo __(" seconds."); ?></td>
</tr>
<tr id="row_estimate" style="" class="datos">
<td style="vertical-align: top;"><?php echo __('Projection period'); ?></td>
<td style="vertical-align: top;"><?php echo __('Projection period') . ui_print_help_icon('projection_graph', true); ?></td>
<td style=""><?php html_print_extended_select_for_time ($intervals_1, 'period2', $projection_period, '', '', '0', 10); echo __(" seconds."); ?></td>
</tr>
<tr id="row_interval" style="" class="datos">
<td style="vertical-align: top;"><?php echo __('Data range') . ui_print_help_tip(__('Between this interval will be search the prediction date'), true); ?></td>
<td style="vertical-align: top;"><?php echo __('Data range') . ui_print_help_icon('prediction_date', true); ?></td>
<td><?php
echo __('Max') . "&nbsp;";
html_print_input_text('max_interval', $max_interval, '', 5, 10);

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,16 @@
<h1>Prediction date</h1>
<p>Prediction date return a date in the future where a module reach an interval. It uses least squares method.</p>
<p>
<b>Period</b>: Period of time to make the estimation.
</p>
<p>
<b>Data Range</b>: Interval that the module needs to reach to return the associated date.
</p>
<p>For example, for the module disk_temp_free and choosing 2 months and searching for the date where the module reach the interval [5-0] the result will be 04 Dec 2011 18:36:23.</p>
<p>This is a graphic vision of the explanation: </p>
<?php html_print_image("images/help/prediction_date.png", false, array('height' => '210')); ?>

View File

@ -0,0 +1,17 @@
<h1>Projection graph</h1>
<?php html_print_image("images/help/projection_periods.png", false, array('height' => '210')); ?>
<br>
<p>
Projection graphs make a projection of module data in the future. The projection is based on linear regressions.
</p>
<p>
Important parameters are:
</p>
<p>
<b>Period</b>: Period of time to make the estimation based on real module data.
</p>
<p>
<b>Projection period</b>: Period of time in the future where the module data will be projected.
</p>

View File

@ -0,0 +1,16 @@
<h1>Prediction date</h1>
<p>Prediction date permite utilizando una proyeccion de los datos de un modulo a futuro, devolver la fecha en la cual el modulo tomara un valor entre un rango. Para ello se utiliza el metodo de los minimos cuadrados.</p>
<p>
<b>Period</b>: Periodo utilizado para hacer la estimacion.
</p>
<p>
<b>Data Range</b>: Intervalo que necesita alcanzar el módulo para que la fecha asociada sea devuelta.
</p>
<p>Por ejemplo, para el modulo disk_temp_free y eligiendo un periodo de 2 meses si se busca la fecha en la que el modulo alcanzará el intervalo [5-0] el resultado sera <i>04 Dec 2011 18:36:23</i>.</p>
<p>Visto de una manera grafica seria:</p>
<?php html_print_image("images/help/prediction_date.png", false, array('height' => '210')); ?>

View File

@ -0,0 +1,17 @@
<h1>Projection graph</h1>
<?php html_print_image("images/help/projection_periods.png", false, array('height' => '210')); ?>
<br>
<p>
Projection graphs hacen una proyección de los datos del modulo en el futuro. La proyeccion se basa en una regresion lineal.
</p>
<p>
Parametros importantes son:
</p>
<p>
<b>Period</b>: Periodo de tiempo para hacer la estimacion basada en datos reales del modulo.
</p>
<p>
<b>Projection period</b>: Periodo de tiempo en el futuro donde los datos del modulo seran estimados.
</p>