2009-01-30 Jorge Gonzalez <jorgegonz@svn.gnome.org>

* include/help/en/help_alert-matches.php,
          include/help/en/help_serverlag.php,
          include/help/en/help_time_stamp-comparation.php,
          include/help/en/help_timesource.php: Modified help files.

        * include/help/es/help_alert-matches.php,
          include/help/es/help_serverlag.php,
          include/help/es/help_time_stamp-comparation.php,
          include/help/es/help_timesource.php: Added Spanish help files.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1412 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jorgonzalez 2009-01-30 08:29:31 +00:00
parent 95aea9312e
commit 550374e535
9 changed files with 81 additions and 9 deletions

View File

@ -1,3 +1,15 @@
2009-01-30 Jorge Gonzalez <jorgegonz@svn.gnome.org>
* include/help/en/help_alert-matches.php,
include/help/en/help_serverlag.php,
include/help/en/help_time_stamp-comparation.php,
include/help/en/help_timesource.php: Modified help files.
* include/help/es/help_alert-matches.php,
include/help/es/help_serverlag.php,
include/help/es/help_time_stamp-comparation.php,
include/help/es/help_timesource.php: Added Spanish help files.
2009-01-29 Esteban Sanchez <estebans@artica.es>
* include/auth/mysql.php: Style correction on switch statements.

View File

@ -1,3 +1,5 @@
<h1>Matches of the alert</h1>
<p>
Defines the number of alerts that must occur before executing the action. It is a fine-tunning parameter.
</p>

View File

@ -1,2 +1,3 @@
<h1>Server Lag</h1>
<p>Server lag has 2 values. The first value (usually the larger one) shows how much seconds the modules are in the queue for that server, the second value show how many modules are in the queue.</p>
<p>Server lag has 2 values. The first value (usually the larger one) shows how much seconds the modules are in the queue for that server, the second value show how many modules are in the queue.</p>

View File

@ -1,3 +1,5 @@
<h1>Timestamp or time comparation</h1>
<p>
It defines what time of date/time is used, the system timestamp or a comparation with the database. Useful when you have the database in other system different than where the Web console is.
</p>

View File

@ -1,22 +1,29 @@
<p class="para">
<h1>Origen de tiempo</h1>
<p>
What source to use for the time. This can be (for now) either the local system (System) or database (Database).<br /><br />
</p>
<p>
This is useful when your database is not on the same system as your webserver or your Pandora FMS servers.
In that case any time difference will miscalculate the time differences and timestamps.
You should use NTP to sync all your pandora servers and your MySQL server.
By using these preferences you don't have to sync your webserver but it's still recommended.
<br /><br />
Feel free to implement more sources (eg: ntp, ldap, $_SERVER...)
<br /><br />
Note: The database query will be cached the first time it's called so the time will always be the same on a page load throughout while System time is returned whenever the function is called which might differ slightly (especially near the ending of a second).
</p>
<p class="para">
<p>
Feel free to implement more sources (eg: ntp, ldap, $_SERVER...).
</p>
<p>
Note: The database query will be cached the first time it's called so the time will always be the same on a page load throughout, while System time is returned whenever the function is called, which might differ slightly (especially near the ending of a second).
</p>
<p>
These examples are all returning Unixtime
<script type="text/javascript">
var date = new Date; // Generic JS date object
var unixtime_ms = date.getTime(); // Returns milliseconds since the epoch
var unixtime = parseInt(unixtime_ms / 1000);
</script><br />
<br />
</script>
</p>
<p>
<?php
$option = array ("prominent" => "timestamp");
?>

View File

@ -0,0 +1,5 @@
<h1>Coincidencias de la alerta</h1>
<p>
Define el número de alertas que deben ocurrir antes de ejecutar la acción. Es un parámetro de ajuste fino.
</p>

View File

@ -0,0 +1,3 @@
<h1>Retardo del servidor</h1>
<p>El retardo del servidor tiene dos valores. El primer valor (generalmente el más largo) muestra los segundos que los módulos están en la cola para ese servidor, el segundo valor muestra el número de módulos en la cola.</p>

View File

@ -0,0 +1,5 @@
<h1>Marca de tiempo o comparación de hora </h1>
<p>
Define qué fecha/hora se usa, la marca de tiempo del sistema o una comparación con la base de datos. Útil cuando la base de datos está en otro sistema diferente de donde se encuentra la consola Web.
</p>

View File

@ -0,0 +1,35 @@
<h1>Origen de tiempo</h1>
<p>
Qué origen de tiempo usar. Esto puede ser (por el momento) el sistema local (&laquo;Sistema&raquo;) o la base de datos (&laquo;Base de datos&raquo;).
</p>
<p>
Esto es útil cuando su base de datos no está en el mismo sistema que su servidor Web o los servidores de su Pandora FMS.
En ese caso cualquier diferencia de tiempo calculará de forma errónea las diferencias de tiempo y marcas de tiempo.
Debería usar NTP para sincronizar todos sus servidores de Pandora FMS y su servidor de MySQL.
Usando estas preferencias no tendrá que sincronizar su servidor web, aún así se recomienda.
</p>
<p>
Implemente más orígenes si lo ve necesario (ej. ntp, ldap, $_SERVER...).
</p>
<p>
Nota: La consulta a la base de datos se cacheará la primera vez que se haga, de tal forma que la hora será siempre la misma en la carga de página, mientras que la hora del sistema se devuelve siempre que se llame a la función, lo que puede diferir (especialmene al final de un segundo).
</p>
<p>
Estos ejemplos devuevent todos el tiempo Unix:
<script type="text/javascript">
var date = new Date; // Objeto de fecha JS genérico
var unixtime_ms = date.getTime(); // Devuelve los milisegundos desde la época
var unixtime = parseInt(unixtime_ms / 1000);
</script>
</p>
<p>
<?php
$option = array ("prominent" => "timestamp");
?>
<b>Hora actual del sistema:</b> <?php print_timestamp (time (), false, $option); ?>
<br />
<b>Hora actual de la base de datos:</b> <?php print_timestamp (get_db_sql ("SELECT UNIX_TIMESTAMP()"), false, $option); ?>
<br />
<b>Hora de su navegador:</b> <script type="text/javascript">document.write (date);</script>
</p>