mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
2010-10-07 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/calendar.js, include/javascript/jquery.colorpicker.js: fixed end of sentences with lost semicolons, the Eclipse IDE warned me some this bugs. * include/javascript/jquery.timeentry.js, include/help/en/help_wmiquery.php, include/help/en/help_tcp_send.php, include/help/en/help_web_checks.php, include/help/es/help_date_format.php, include/help/es/help_tcp_send.php, include/help/es/help_agent_status.php, include/help/es/help_eventview.php, include/help/es/help_configure_gis_map.php, include/help/es/help_web_checks.php, include/help/es/help_plugin_definition.php, include/help/es/help_alert_macros.php, include/help/ja/help_wmiquery.php, include/help/ja/help_date_format.php, include/help/ja/help_alert-matches.php, include/help/ja/help_tcp_send.php, include/help/ja/help_agent_status.php, include/help/ja/help_eventview.php, include/help/ja/help_configure_gis_map.php, include/help/ja/help_map_builder.php, include/help/ja/help_web_checks.php, include/help/ja/help_plugin_definition.php, include/help/ja/help_alert_macros.php, include/help/ja/help_gis_setup_map_connection.php: cleaned html and fixed unclose html tags in source code, the Eclipse IDE warned me some this bugs. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3363 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
6756003525
commit
cb40f1c091
@ -1,3 +1,27 @@
|
|||||||
|
2010-10-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* include/javascript/calendar.js, include/javascript/jquery.colorpicker.js:
|
||||||
|
fixed end of sentences with lost semicolons, the Eclipse IDE warned me some
|
||||||
|
this bugs.
|
||||||
|
|
||||||
|
* include/javascript/jquery.timeentry.js, include/help/en/help_wmiquery.php,
|
||||||
|
include/help/en/help_tcp_send.php, include/help/en/help_web_checks.php,
|
||||||
|
include/help/es/help_date_format.php, include/help/es/help_tcp_send.php,
|
||||||
|
include/help/es/help_agent_status.php, include/help/es/help_eventview.php,
|
||||||
|
include/help/es/help_configure_gis_map.php,
|
||||||
|
include/help/es/help_web_checks.php,
|
||||||
|
include/help/es/help_plugin_definition.php,
|
||||||
|
include/help/es/help_alert_macros.php, include/help/ja/help_wmiquery.php,
|
||||||
|
include/help/ja/help_date_format.php,
|
||||||
|
include/help/ja/help_alert-matches.php, include/help/ja/help_tcp_send.php,
|
||||||
|
include/help/ja/help_agent_status.php, include/help/ja/help_eventview.php,
|
||||||
|
include/help/ja/help_configure_gis_map.php,
|
||||||
|
include/help/ja/help_map_builder.php, include/help/ja/help_web_checks.php,
|
||||||
|
include/help/ja/help_plugin_definition.php,
|
||||||
|
include/help/ja/help_alert_macros.php,
|
||||||
|
include/help/ja/help_gis_setup_map_connection.php: cleaned html and fixed
|
||||||
|
unclose html tags in source code, the Eclipse IDE warned me some this bugs.
|
||||||
|
|
||||||
2010-10-07 Miguel de Dios <miguel.dedios@artica.es>
|
2010-10-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* include/calendar.js, include/FusionCharts/FusionCharts.js: fixed end of
|
* include/calendar.js, include/FusionCharts/FusionCharts.js: fixed end of
|
||||||
|
@ -50,27 +50,28 @@ SSH-2.0|Protocol mismatch
|
|||||||
<h3>Example #3. Checking a SMTP service</h3>
|
<h3>Example #3. Checking a SMTP service</h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
This is sample SMTP conversation:
|
This is sample SMTP conversation:</p>
|
||||||
<pre>
|
<pre>
|
||||||
R: 220 mail.supersmtp.com Blah blah blah
|
R: 220 mail.supersmtp.com Blah blah blah
|
||||||
S: HELO myhostname.com
|
S: HELO myhostname.com
|
||||||
R: 250 myhostname.com
|
R: 250 myhostname.com
|
||||||
S: MAIL FROM: <pepito@myhostname.com>
|
S: MAIL FROM: <pepito@myhostname.com>
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: RCPT TO: <Jones@supersmtp.com>
|
S: RCPT TO: <Jones@supersmtp.com>
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: DATA
|
S: DATA
|
||||||
R: 354 Start mail input; end with <CRLF>.<CRLF>
|
R: 354 Start mail input; end with <CRLF>.<CRLF>
|
||||||
S: .......your mail here........
|
S: .......your mail here........
|
||||||
S: .
|
S: .
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: QUIT
|
S: QUIT
|
||||||
R: 221 mail.supersmtp.com Service closing blah blah blah
|
R: 221 mail.supersmtp.com Service closing blah blah blah
|
||||||
</pre>
|
</pre>
|
||||||
|
<p>
|
||||||
<br />
|
<br />
|
||||||
So if you want to check the first steps of conversation, the fields will be:
|
So if you want to check the first steps of conversation, the fields will be:
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<b>TCP SEND </b>: HELLO myhostname.com^M|MAIL FROM: <pepito@myhostname.com>^M| RCPT TO: <Jones@supersmtp.com>^M
|
<b>TCP SEND </b>: HELLO myhostname.com^M|MAIL FROM: <pepito@myhostname.com>^M| RCPT TO: <Jones@supersmtp.com>^M
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<b>TCP SEND </b>: 250|250|250
|
<b>TCP SEND </b>: 250|250|250
|
||||||
<br /><br />
|
<br /><br />
|
||||||
|
@ -7,9 +7,10 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
Advanced WEB Monitoring is a feature done by the Goliat/WEB Server in Pandora FMS Enterprise version.
|
Advanced WEB Monitoring is a feature done by the Goliat/WEB Server in Pandora FMS Enterprise version.
|
||||||
<br><br>
|
<br /><br />
|
||||||
This is a sample of GOLIAT Webcheck module:
|
This is a sample of GOLIAT Webcheck module:
|
||||||
<br>
|
<br />
|
||||||
|
</p>
|
||||||
<pre>
|
<pre>
|
||||||
|
|
||||||
|
|
||||||
@ -24,7 +25,7 @@ resource 1
|
|||||||
task_end
|
task_end
|
||||||
|
|
||||||
task_begin
|
task_begin
|
||||||
get http://galaga.artica.es/pandora/index.php?sec=messages&sec2=operation/messages/message
|
get http://galaga.artica.es/pandora/index.php?sec=messages&sec2=operation/messages/message
|
||||||
cookie 1
|
cookie 1
|
||||||
resource 1
|
resource 1
|
||||||
check_string Read messages
|
check_string Read messages
|
||||||
@ -32,4 +33,3 @@ task_end
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
</p>
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
Any valid WQL query. According to Microsoft, the WMI Query Language (WQL) is a subset of standard American National Standards Institute Structured Query Language (ANSI SQL) with minor semantic changes to support WMI.
|
Any valid WQL query. According to Microsoft, the WMI Query Language (WQL) is a subset of standard American National Standards Institute Structured Query Language (ANSI SQL) with minor semantic changes to support WMI.
|
||||||
<p>
|
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
Example: SELECT LoadPercentage from Win32_Processor WHERE DeviceID = "CPU0"
|
Example: SELECT LoadPercentage from Win32_Processor WHERE DeviceID = "CPU0"
|
||||||
</p>
|
</p>
|
@ -23,14 +23,14 @@ Los valores posibles del <b>estado de un agente </b> son:
|
|||||||
|
|
||||||
<table width="750px">
|
<table width="750px">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/module_critical.png" title="At least one monitor fails" alt="At least one monitor fails"><img src="../images/status_sets/faces/module_critical.png" title="At least one monitor fails" alt="At least one monitor fails"><td>Al menos un monitor falla</td>
|
<td class="f9i"><img src="../images/status_sets/default/module_critical.png" title="At least one monitor fails" alt="At least one monitor fails"><img src="../images/status_sets/faces/module_critical.png" title="At least one monitor fails" alt="At least one monitor fails"></td><td>Al menos un monitor falla</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/module_warning.png" title="Change between Green/Red state" alt="Change between Green/Red state"><img src="../images/status_sets/faces/module_warning.png" title="Change between Green/Red state" alt="Change between Green/Red state"><td>Cambia entre el estado Verde/Rojo</td>
|
<td class="f9i"><img src="../images/status_sets/default/module_warning.png" title="Change between Green/Red state" alt="Change between Green/Red state"><img src="../images/status_sets/faces/module_warning.png" title="Change between Green/Red state" alt="Change between Green/Red state"></td><td>Cambia entre el estado Verde/Rojo</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_ok.png" title="All Monitors OK" alt="All Monitors OK"><img src="../images/status_sets/faces/agent_ok.png" title="All Monitors OK" alt="All Monitors OK"><td>Todos los monitores están OK</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_ok.png" title="All Monitors OK" alt="All Monitors OK"><img src="../images/status_sets/faces/agent_ok.png" title="All Monitors OK" alt="All Monitors OK"></td><td>Todos los monitores están OK</td>
|
||||||
|
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_no_monitors.png" title="Agent without monitors" alt="Agent without monitors"><img src="../images/status_sets/faces/agent_no_monitors.png" title="Agent without monitors" alt="Agent without monitors"><td>Agente sin monitores</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_no_monitors.png" title="Agent without monitors" alt="Agent without monitors"><img src="../images/status_sets/faces/agent_no_monitors.png" title="Agent without monitors" alt="Agent without monitors"></td><td>Agente sin monitores</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_no_data.png" title="Agent without data" alt="Agent without data"><img src="../images/status_sets/faces/agent_no_data.png" title="Agent without data" alt="Agent without data"><td>Agente sin datos</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_no_data.png" title="Agent without data" alt="Agent without data"><img src="../images/status_sets/faces/agent_no_data.png" title="Agent without data" alt="Agent without data"></td><td>Agente sin datos</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_down.png" title="Agent down" alt="Agent down"><img src="../images/status_sets/faces/agent_down.png" title="Agent down" alt="Agent down"><td>Agente caído</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_down.png" title="Agent down" alt="Agent down"><img src="../images/status_sets/faces/agent_down.png" title="Agent down" alt="Agent down"></td><td>Agente caído</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@ -40,9 +40,9 @@ Los valores posibles del <b>estado de alerta </b> son:
|
|||||||
<br><br>
|
<br><br>
|
||||||
<table width="450px">
|
<table width="450px">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/alert_fired.png" title="Alert fired" alt="Alert fired"><img src="../images/status_sets/faces/alert_fired.png" title="Alert fired" alt="Alert fired"><td>Alerta disparada</td>
|
<td class="f9i"><img src="../images/status_sets/default/alert_fired.png" title="Alert fired" alt="Alert fired"><img src="../images/status_sets/faces/alert_fired.png" title="Alert fired" alt="Alert fired"></td><td>Alerta disparada</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/alert_disabled.png" title="Alert disabled" alt="Alert disabled"><img src="../images/status_sets/faces/alert_disabled.png" title="Alert disabled" alt="Alert disabled"><td>Alerta desactivada</td>
|
<td class="f9i"><img src="../images/status_sets/default/alert_disabled.png" title="Alert disabled" alt="Alert disabled"><img src="../images/status_sets/faces/alert_disabled.png" title="Alert disabled" alt="Alert disabled"></td><td>Alerta desactivada</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/alert_not_fired.png" title="Alert not fired" alt="Alert not fired"><img src="../images/status_sets/faces/alert_not_fired.png" title="Alert not fired" alt="Alert not fired"><td>Alerta no disparada</td>
|
<td class="f9i"><img src="../images/status_sets/default/alert_not_fired.png" title="Alert not fired" alt="Alert not fired"><img src="../images/status_sets/faces/alert_not_fired.png" title="Alert not fired" alt="Alert not fired"></td><td>Alerta no disparada</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
Las siguientes macros están disponibles:
|
Las siguientes macros están disponibles:
|
||||||
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>_field1_: Campo 1 definido por el usuario.</li>
|
<li>_field1_: Campo 1 definido por el usuario.</li>
|
||||||
<li>_field2_: Campo 2 definido por el usuario.</li>
|
<li>_field2_: Campo 2 definido por el usuario.</li>
|
||||||
@ -18,16 +19,15 @@ Las siguientes macros están disponibles:
|
|||||||
<li>_alert_description_: Descripción de la alerta.</li>
|
<li>_alert_description_: Descripción de la alerta.</li>
|
||||||
<li>_alert_threshold_: Umbral de la alerta.</li>
|
<li>_alert_threshold_: Umbral de la alerta.</li>
|
||||||
<li>_alert_times_fired_: Número de veces que se ha disparado la alerta.</li>
|
<li>_alert_times_fired_: Número de veces que se ha disparado la alerta.</li>
|
||||||
<li>_module_: Nombre del módulo
|
<li>_module_: Nombre del módulo</li>
|
||||||
<li>_moduledescription_: Descripcion del modulo.
|
<li>_moduledescription_: Descripcion del modulo.</li>
|
||||||
<li>_alert_name_: Nombre de la alerta.
|
<li>_alert_name_: Nombre de la alerta.</li>
|
||||||
<li>_alert_priority_: Prioridad de la alerta.
|
<li>_alert_priority_: Prioridad de la alerta.</li>
|
||||||
<li>_id_agent_: ID del agente, util para construir URL de acceso a la consola de Pandora.
|
<li>_id_agent_: ID del agente, util para construir URL de acceso a la consola de Pandora.</li>
|
||||||
<li>_id_alert_: ID de la alerta, util para correlar la alerta en herramientas de terceros.
|
<li>_id_alert_: ID de la alerta, util para correlar la alerta en herramientas de terceros.</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
</p>
|
|
||||||
Ejemplo: Error en el agente _agent_: _alert_description_
|
Ejemplo: Error en el agente _agent_: _alert_description_
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ Cada mapa tiene un nombre descriptivo que se utiliza para reconocer el mapa dent
|
|||||||
</p>
|
</p>
|
||||||
<h2>Seleccionar Conexiones</h2>
|
<h2>Seleccionar Conexiones</h2>
|
||||||
<p>
|
<p>
|
||||||
El primer paso es seleccionar la principal </strong>conexión </strong> empleada en este Mapa GIS. Al menos una conexión debe ser seleccionada para configurar el MAPA GIS, pero es posible añadir más presionando el icono(Add) <img src="../images/add.png" alt="Add" />
|
El primer paso es seleccionar la principal <strong>conexión </strong> empleada en este Mapa GIS. Al menos una conexión debe ser seleccionada para configurar el MAPA GIS, pero es posible añadir más presionando el icono(Add) <img src="../images/add.png" alt="Add" />
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -336,24 +336,30 @@
|
|||||||
<h3 class="title">Ejemplos</h3>
|
<h3 class="title">Ejemplos</h3>
|
||||||
|
|
||||||
<table cellpadding=4 cellspacing=4 class=datos>
|
<table cellpadding=4 cellspacing=4 class=datos>
|
||||||
<th>Cadena de formato <th>Ejemplo de salida
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>F j, Y, g:i a <td> March 10, 2001, 5:16 pm
|
<th>Cadena de formato</th> <th>Ejemplo de salida</th>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>m.d.y <td> 03.10.01
|
<td>F j, Y, g:i a</td><td>March 10, 2001, 5:16 pm</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>j, n, Y <td> 10, 3, 2001
|
<td>m.d.y</td><td>03.10.01</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Ymd <td>20010310
|
<td>j, n, Y</td><td>10, 3, 2001</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>h-i-s, j-m-y, it is w Day z <td>05-16-17, 10-03-01, 1631 1618 6 Fripm01
|
<td>Ymd</td><td>20010310</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>\e\s \e\l \d\í\a j. <td>Es el día 10.
|
<td>h-i-s, j-m-y, it is w Day z</td><td>05-16-17, 10-03-01, 1631 1618 6 Fripm01</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>\e\s \e\l \d\í\a j.</td><td>Es el día 10.</td>
|
||||||
D M j G:i:s T Y <td>Sat Mar 10 15:16:08 MST 2001
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>H:i:s <td>17:16:17
|
<td>D M j G:i:s T Y</td><td>Sat Mar 10 15:16:08 MST 2001</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>H:i:s</td><td>17:16:17</td>
|
||||||
</table>
|
</table>
|
||||||
|
@ -31,4 +31,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="clear: both;"> </div>
|
<div style="clear: both;"> </div>
|
||||||
</div>
|
|
||||||
|
@ -20,24 +20,24 @@ La operación podría ser «status», «qps», «load&r
|
|||||||
|
|
||||||
<table cellpadding=4 cellspacing=4 class=databox width=80%>
|
<table cellpadding=4 cellspacing=4 class=databox width=80%>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign='top'>Comando del complemento<td>/usr/share/pandora/util/plugins/informix_plugin_pandora (ubicación predeterminada para los complementos)
|
<td valign='top'>Comando del complemento</td><td>/usr/share/pandora/util/plugins/informix_plugin_pandora (ubicación predeterminada para los complementos)</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Máx. tiempo de expiración<td> 15 (por ejemplo).
|
<td>Máx. tiempo de expiración</td><td> 15 (por ejemplo).</td>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Dirección IP<td> -H
|
<td>Dirección IP</td><td> -H</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Opción de puerto<td> Déjela en blanco.
|
<td>Opción de puerto</td><td> Déjela en blanco.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Opción de usuario<td> -U
|
<td>Opción de usuario</td><td> -U</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Opción de contraseña<td> -P
|
<td>Opción de contraseña</td><td> -P</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
@ -50,27 +50,28 @@ SSH-2.0|Protocol mismatch
|
|||||||
<h3>Ejemplo #3. Comprobar un servicio SMTP</h3>
|
<h3>Ejemplo #3. Comprobar un servicio SMTP</h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Este es un ejemplo de una conversacion SMTP:
|
Este es un ejemplo de una conversacion SMTP:</p>
|
||||||
<pre>
|
<pre>
|
||||||
R: 220 mail.supersmtp.com Bla bla bla
|
R: 220 mail.supersmtp.com Bla bla bla
|
||||||
S: HELO myhostname.com
|
S: HELO myhostname.com
|
||||||
R: 250 myhostname.com
|
R: 250 myhostname.com
|
||||||
S: MAIL FROM: <pepito@myhostname.com>
|
S: MAIL FROM: <pepito@myhostname.com>
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: RCPT TO: <Jones@supersmtp.com>
|
S: RCPT TO: <Jones@supersmtp.com>
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: DATA
|
S: DATA
|
||||||
R: 354 Start mail input; end with <CRLF>.<CRLF>
|
R: 354 Start mail input; end with <CRLF>.<CRLF>
|
||||||
S: .......aquí su correo-e........
|
S: .......aquí su correo-e........
|
||||||
S: .
|
S: .
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: QUIT
|
S: QUIT
|
||||||
R: 221 mail.supersmtp.com Service closing bla bla bla
|
R: 221 mail.supersmtp.com Service closing bla bla bla
|
||||||
</pre>
|
</pre>
|
||||||
|
<p>
|
||||||
<br />
|
<br />
|
||||||
De tal forma que si quiere comprar los primeros pasos de la conversación, los campos deberían ser:
|
De tal forma que si quiere comprar los primeros pasos de la conversación, los campos deberían ser:
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<b>TCP SEND </b>: HELO myhostname.com^M|MAIL FROM: <pepito@myhostname.com>^M| RCPT TO: <Jones@supersmtp.com>^M
|
<b>TCP SEND </b>: HELO myhostname.com^M|MAIL FROM: <pepito@myhostname.com>^M| RCPT TO: <Jones@supersmtp.com>^M
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<b>TCP SEND </b>: 250|250|250
|
<b>TCP SEND </b>: 250|250|250
|
||||||
<br /><br />
|
<br /><br />
|
||||||
|
@ -10,7 +10,8 @@ La monitorización WEB avanzada es una funcionalidad que realiza el Servidor WEB
|
|||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
Este es un ejemplo del modulo Webcheck de GOLIAT:
|
Este es un ejemplo del modulo Webcheck de GOLIAT:
|
||||||
<br>
|
<br />
|
||||||
|
</p>
|
||||||
<pre>
|
<pre>
|
||||||
|
|
||||||
|
|
||||||
@ -25,7 +26,7 @@ resource 1
|
|||||||
task_end
|
task_end
|
||||||
|
|
||||||
task_begin
|
task_begin
|
||||||
get http://galaga.artica.es/pandora/index.php?sec=messages&sec2=operation/messages/message
|
get http://galaga.artica.es/pandora/index.php?sec=messages&sec2=operation/messages/message
|
||||||
cookie 1
|
cookie 1
|
||||||
resource 1
|
resource 1
|
||||||
check_string Read messages
|
check_string Read messages
|
||||||
@ -33,4 +34,3 @@ task_end
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
</p>
|
|
||||||
|
@ -10,20 +10,20 @@
|
|||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<table width=750px><tr>
|
<table width=750px><tr>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_ok.png" title="すべての監視項目が正常" alt="すべての監視項目が正常"><td>すべての監視項目が正常</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_ok.png" title="すべての監視項目が正常" alt="すべての監視項目が正常"></td><td>すべての監視項目が正常</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/module_critical.png" title="1つ以上の監視項目で障害" alt="1つ以上の監視項目で障害"><td>1つ以上の監視項目で障害</td>
|
<td class="f9i"><img src="../images/status_sets/default/module_critical.png" title="1つ以上の監視項目で障害" alt="1つ以上の監視項目で障害"></td><td>1つ以上の監視項目で障害</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/module_warning.png" title="緑/赤 の状態変化発生" alt="緑/赤 の状態変化発生"><td>緑/赤 の状態変化発生</td>
|
<td class="f9i"><img src="../images/status_sets/default/module_warning.png" title="緑/赤 の状態変化発生" alt="緑/赤 の状態変化発生"></td><td>緑/赤 の状態変化発生</td>
|
||||||
|
|
||||||
<td class="f9i"><img src="../images/status_sets/default/alert_fired.png" title="アラート発生中" alt="アラート発生中"><td>アラート発生中</td>
|
<td class="f9i"><img src="../images/status_sets/default/alert_fired.png" title="アラート発生中" alt="アラート発生中"></td><td>アラート発生中</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/alert_disabled.png" title="アラートが無効" alt="アラートが無効"><td>アラートが無効</td>
|
<td class="f9i"><img src="../images/status_sets/default/alert_disabled.png" title="アラートが無効" alt="アラートが無効"></td><td>アラートが無効</td>
|
||||||
|
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
|
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_no_monitors.png" title="監視対象外エージェント" alt="監視対象外エージェント"><td>監視対象外エージェント</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_no_monitors.png" title="監視対象外エージェント" alt="監視対象外エージェント"></td><td>監視対象外エージェント</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_no_data.png" title="データ収集対象外エージェント" alt="データ収集対象外エージェント"><td>データ収集対象外エージェント</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_no_data.png" title="データ収集対象外エージェント" alt="データ収集対象外エージェント"></td><td>データ収集対象外エージェント</td>
|
||||||
<td class="f9i"><img src="../images/status_sets/default/agent_down.png" title="エージェント停止中" alt="エージェント停止中"><td>エージェント停止中</td>
|
<td class="f9i"><img src="../images/status_sets/default/agent_down.png" title="エージェント停止中" alt="エージェント停止中"></td><td>エージェント停止中</td>
|
||||||
|
|
||||||
<td class="f9i"><img src="../images/status_sets/default/alert_not_fired.png" title="アラート未発生" alt="アラート未発生"><td>アラート未発生</td>
|
<td class="f9i"><img src="../images/status_sets/default/alert_not_fired.png" title="アラート未発生" alt="アラート未発生"></td><td>アラート未発生</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
@ -8,9 +8,8 @@
|
|||||||
<p>
|
<p>
|
||||||
いくつアラートが上がった時にアクション(メール送信等)を実行するかを定義します。
|
いくつアラートが上がった時にアクション(メール送信等)を実行するかを定義します。
|
||||||
数値は、開始の値と終了の値が定義でき、定義する値によって次のような動作になります。
|
数値は、開始の値と終了の値が定義でき、定義する値によって次のような動作になります。
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>未定義もしくは開始の値が 0 の場合は、常にアクションを実行します。
|
|
||||||
<li>開始の値と終了の値が 1 以上の場合は、アラートの回数がその範囲の間、アクションを実行します。
|
|
||||||
</ul>
|
|
||||||
</p>
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li>未定義もしくは開始の値が 0 の場合は、常にアクションを実行します。</li>
|
||||||
|
<li>開始の値と終了の値が 1 以上の場合は、アラートの回数がその範囲の間、アクションを実行します。</li>
|
||||||
|
</ul>
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
次のマクロが利用できます:
|
次のマクロが利用できます:
|
||||||
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>_field1_ : ユーザ定義フィールド1</li>
|
<li>_field1_ : ユーザ定義フィールド1</li>
|
||||||
<li>_field2_ : ユーザ定義フィールド2</li>
|
<li>_field2_ : ユーザ定義フィールド2</li>
|
||||||
@ -30,6 +31,5 @@
|
|||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
</p>
|
|
||||||
例: Agent _agent_ has fired alert _alert_ with data _data_
|
例: Agent _agent_ has fired alert _alert_ with data _data_
|
||||||
</p>
|
</p>
|
||||||
|
@ -25,7 +25,7 @@ GIS マップを設定するためには、少なくとも一つ選択されて
|
|||||||
<h2>マップパラメータ</h2>
|
<h2>マップパラメータ</h2>
|
||||||
<p>
|
<p>
|
||||||
一度利用マップが選択されると、個別のパラメータ設定が可能です。
|
一度利用マップが選択されると、個別のパラメータ設定が可能です。
|
||||||
マップの<strongr>中心</strong>(マップを開いた時に表示される)、<strong>デフォルトの拡大レベル</strong>(マップを開いた時の拡大レベル)、<strong>デフォルト位置</strong>(位置情報を持たないエージェントが表示される位置)の設定ができます。
|
マップの<strong>中心</strong>(マップを開いた時に表示される)、<strong>デフォルトの拡大レベル</strong>(マップを開いた時の拡大レベル)、<strong>デフォルト位置</strong>(位置情報を持たないエージェントが表示される位置)の設定ができます。
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<strong>オプション:</strong>
|
<strong>オプション:</strong>
|
||||||
|
@ -337,24 +337,31 @@
|
|||||||
<h3 class="title">例</h3>
|
<h3 class="title">例</h3>
|
||||||
|
|
||||||
<table cellpadding=4 cellspacing=4 class=datos>
|
<table cellpadding=4 cellspacing=4 class=datos>
|
||||||
<th>フォーマット設定 <th>表示例
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>F j, Y, g:i a <td> March 10, 2001, 5:16 pm
|
<th>フォーマット設定</th><th>表示例</th>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>m.d.y <td> 03.10.01
|
<td>F j, Y, g:i a</td><td> March 10, 2001, 5:16 pm</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>j, n, Y <td> 10, 3, 2001
|
<td>m.d.y</td><td> 03.10.01</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Ymd <td>20010310
|
<td>j, n, Y</td><td> 10, 3, 2001</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>h-i-s, j-m-y, it is w Day z <td>05-16-17, 10-03-01, 1631 1618 6 Fripm01
|
<td>Ymd</td><td>20010310</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>\i\t \i\s \t\h\e jS \d\a\y. <td>It is the 10th day.
|
<td>h-i-s, j-m-y, it is w Day z</td><td>05-16-17, 10-03-01, 1631 1618 6 Fripm01</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>\i\t \i\s \t\h\e jS \d\a\y.</td><td>It is the 10th day.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>D M j G:i:s T Y </td><td>Sat Mar 10 15:16:08 MST 2001</td>
|
||||||
D M j G:i:s T Y <td>Sat Mar 10 15:16:08 MST 2001
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>H:i:s <td>17:16:17
|
<td>H:i:s</td><td>17:16:17</td>
|
||||||
</table>
|
</table>
|
@ -31,4 +31,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="clear: both;"> </div>
|
<div style="clear: both;"> </div>
|
||||||
</div>
|
|
||||||
|
@ -17,12 +17,13 @@
|
|||||||
<p>
|
<p>
|
||||||
Open Street マップを利用するためには、以下に示す Open Street マップサーバにアクセスできる必要があります。
|
Open Street マップを利用するためには、以下に示す Open Street マップサーバにアクセスできる必要があります。
|
||||||
(詳細は、<a href="http://wiki.openstreetmap.org/wiki/ja:Main_Page">http://wiki.openstreetmap.org/wiki/ja:Main_Page</a> を参照してください。また、<a href="http://wiki.openstreetmap.org/wiki/ja:Mapnik">http://wiki.openstreetmap.org/wiki/ja:Mapnik</a> にサンプルがあります。)
|
(詳細は、<a href="http://wiki.openstreetmap.org/wiki/ja:Main_Page">http://wiki.openstreetmap.org/wiki/ja:Main_Page</a> を参照してください。また、<a href="http://wiki.openstreetmap.org/wiki/ja:Mapnik">http://wiki.openstreetmap.org/wiki/ja:Mapnik</a> にサンプルがあります。)
|
||||||
|
</p>
|
||||||
<pre>
|
<pre>
|
||||||
http://tile.openstreetmap.org/${z}/${x}/${y}.png
|
http://tile.openstreetmap.org/${z}/${x}/${y}.png
|
||||||
</pre>
|
</pre>
|
||||||
|
<p>
|
||||||
OpenStreetマップの利用は、<a href="http://wiki.openstreetmap.org/wiki/Licence">ライセンス</a>に従っています。
|
OpenStreetマップの利用は、<a href="http://wiki.openstreetmap.org/wiki/Licence">ライセンス</a>に従っています。
|
||||||
</p>
|
</p>
|
||||||
</p>
|
|
||||||
<h3>Google マップ</h3>
|
<h3>Google マップ</h3>
|
||||||
<p>
|
<p>
|
||||||
最初に Google MAPS API に登録し、フリーの API キーを取得する必要があります。
|
最初に Google MAPS API に登録し、フリーの API キーを取得する必要があります。
|
||||||
|
@ -30,6 +30,6 @@
|
|||||||
<li>親クラス - 他のアイテムの子アイテムとして定義したい場合に指定します。</li>
|
<li>親クラス - 他のアイテムの子アイテムとして定義したい場合に指定します。</li>
|
||||||
<li>リンク先マップ - アイテムを他のマップへリンクしたい場合に指定します</li>
|
<li>リンク先マップ - アイテムを他のマップへリンクしたい場合に指定します</li>
|
||||||
</ul>
|
</ul>
|
||||||
作成済みアイテムのプロパティを編集するには、マップ上のアイテムを「マップアイテム編集」にドラッグ&ドロップします。
|
作成済みアイテムのプロパティを編集するには、マップ上のアイテムを「マップアイテム編集」にドラッグ&ドロップします。
|
||||||
<br /><br />
|
<br /><br />
|
||||||
アイテムを削除するには、「マップアイテム削除」から削除したいアイテムを選択し、「削除」をクリックします。
|
アイテムを削除するには、「マップアイテム削除」から削除したいアイテムを選択し、「削除」をクリックします。
|
||||||
|
@ -24,23 +24,23 @@ Pandora FMS で利用するために、このプラグインは単一の値を
|
|||||||
|
|
||||||
<table cellpadding=4 cellspacing=4 class=databox width=80%>
|
<table cellpadding=4 cellspacing=4 class=databox width=80%>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign='top'>プラグインコマンド<td>/usr/share/pandora/util/plugins/informix_plugin_pandora (プラグインのデフォルト配置ディレクトリ)
|
<td valign='top'>プラグインコマンド</td><td>/usr/share/pandora/util/plugins/informix_plugin_pandora (プラグインのデフォルト配置ディレクトリ)</td>
|
||||||
<tr>
|
<tr>
|
||||||
<td>最大タイムアウト<td> 15 (例)
|
<td>最大タイムアウト</td><td> 15 (例)</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>IPアドレスオプション<td> -H
|
<td>IPアドレスオプション</td><td> -H</td>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Port オプション<td> 未記入
|
<td>Port オプション</td><td> 未記入</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>User オプション<td> -U
|
<td>User オプション</td><td> -U</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Password オプション<td> -P
|
<td>Password オプション</td><td> -P</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
@ -55,27 +55,28 @@ SSH-2.0|Protocol mismatch
|
|||||||
<h3>例3) SMTP サービスの確認</h3>
|
<h3>例3) SMTP サービスの確認</h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
これは、SMTP 通信の例です。
|
これは、SMTP 通信の例です。</p>
|
||||||
<pre>
|
<pre>
|
||||||
R: 220 mail.supersmtp.com Blah blah blah
|
R: 220 mail.supersmtp.com Blah blah blah
|
||||||
S: HELO myhostname.com
|
S: HELO myhostname.com
|
||||||
R: 250 myhostname.com
|
R: 250 myhostname.com
|
||||||
S: MAIL FROM: <pepito@myhostname.com>
|
S: MAIL FROM: <pepito@myhostname.com>
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: RCPT TO: <Jones@supersmtp.com>
|
S: RCPT TO: <Jones@supersmtp.com>
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: DATA
|
S: DATA
|
||||||
R: 354 Start mail input; end with <CRLF>.<CRLF>
|
R: 354 Start mail input; end with <CRLF>.<CRLF>
|
||||||
S: .......your mail here........
|
S: .......your mail here........
|
||||||
S: .
|
S: .
|
||||||
R: 250 OK
|
R: 250 OK
|
||||||
S: QUIT
|
S: QUIT
|
||||||
R: 221 mail.supersmtp.com Service closing blah blah blah
|
R: 221 mail.supersmtp.com Service closing blah blah blah
|
||||||
</pre>
|
</pre>
|
||||||
|
<p>
|
||||||
<br />
|
<br />
|
||||||
最初の通信ステップをチェックしたい場合、各フィールドへ設定する値は次のようになります。
|
最初の通信ステップをチェックしたい場合、各フィールドへ設定する値は次のようになります。
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<b>「TCP 送信文字列」</b>: HELLO myhostname.com^M|MAIL FROM: <pepito@myhostname.com>^M| RCPT TO: <Jones@supersmtp.com>^M
|
<b>「TCP 送信文字列」</b>: HELLO myhostname.com^M|MAIL FROM: <pepito@myhostname.com>^M| RCPT TO: <Jones@supersmtp.com>^M
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<b>「TCP 受信文字列」</b>: 250|250|250
|
<b>「TCP 受信文字列」</b>: 250|250|250
|
||||||
<br /><br />
|
<br /><br />
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
<br><br>
|
<br><br>
|
||||||
以下に、GOLIAT ウェブチェックモジュールのサンプルを示します。
|
以下に、GOLIAT ウェブチェックモジュールのサンプルを示します。
|
||||||
<br>
|
<br>
|
||||||
|
</p>
|
||||||
<pre>
|
<pre>
|
||||||
|
|
||||||
|
|
||||||
@ -24,7 +25,7 @@ resource 1
|
|||||||
task_end
|
task_end
|
||||||
|
|
||||||
task_begin
|
task_begin
|
||||||
get http://galaga.artica.es/pandora/index.php?sec=messages&sec2=operation/messages/message
|
get http://galaga.artica.es/pandora/index.php?sec=messages&sec2=operation/messages/message
|
||||||
cookie 1
|
cookie 1
|
||||||
resource 1
|
resource 1
|
||||||
check_string Read messages
|
check_string Read messages
|
||||||
@ -32,4 +33,3 @@ task_end
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
</p>
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
WMI クエリ言語(WQL)は、マイクロソフトにより WMI サポートを追加された ANSI SQL のサブセットです。
|
WMI クエリ言語(WQL)は、マイクロソフトにより WMI サポートを追加された ANSI SQL のサブセットです。
|
||||||
<p>
|
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
例: SELECT LoadPercentage from Win32_Processor WHERE DeviceID = "CPU0"
|
例: SELECT LoadPercentage from Win32_Processor WHERE DeviceID = "CPU0"
|
||||||
</p>
|
</p>
|
||||||
|
@ -654,7 +654,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
};
|
||||||
|
|
||||||
// Add a method to left pad zeroes
|
// Add a method to left pad zeroes
|
||||||
|
|
||||||
@ -663,7 +663,7 @@
|
|||||||
{var result = '';
|
{var result = '';
|
||||||
for (var i=0;i<(padToLength - this.length);i++) {result += '0';}
|
for (var i=0;i<(padToLength - this.length);i++) {result += '0';}
|
||||||
return (result + this);
|
return (result + this);
|
||||||
}
|
};
|
||||||
|
|
||||||
// Set up a closure so that any next function can be triggered
|
// Set up a closure so that any next function can be triggered
|
||||||
// after the calendar has been closed AND that function can take
|
// after the calendar has been closed AND that function can take
|
||||||
@ -683,7 +683,7 @@
|
|||||||
|
|
||||||
return (args.shift()==scwTriggerEle)
|
return (args.shift()==scwTriggerEle)
|
||||||
?func.apply(this, args):null;
|
?func.apply(this, args):null;
|
||||||
}
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
// Set up some shortcuts
|
// Set up some shortcuts
|
||||||
@ -1451,7 +1451,7 @@
|
|||||||
|
|
||||||
// The first Base Day in the year
|
// The first Base Day in the year
|
||||||
var scwFirstBaseDay =
|
var scwFirstBaseDay =
|
||||||
new Date(scwInDateWeekBase.getFullYear(),0,1)
|
new Date(scwInDateWeekBase.getFullYear(),0,1);
|
||||||
|
|
||||||
scwFirstBaseDay.setDate(scwFirstBaseDay.getDate()
|
scwFirstBaseDay.setDate(scwFirstBaseDay.getDate()
|
||||||
- scwFirstBaseDay.getDay()
|
- scwFirstBaseDay.getDay()
|
||||||
|
@ -46,5 +46,5 @@ $.colorPicker.hideColorPicker();},_generateColorPicker:function(){var colors=new
|
|||||||
{if((i%width)==0){html+="<tr>";}
|
{if((i%width)==0){html+="<tr>";}
|
||||||
html+='<td class="color" title="'+colors[i]+'" style="background-color:'+colors[i]+'"><label> </label></td>';if(((i+1)>=total)||(((i+1)%width)==0))
|
html+='<td class="color" title="'+colors[i]+'" style="background-color:'+colors[i]+'"><label> </label></td>';if(((i+1)>=total)||(((i+1)%width)==0))
|
||||||
{html+="</tr>";}}
|
{html+="</tr>";}}
|
||||||
html+="</table>";return html}});$.fn.attachColorPicker=function(){return this.each(function(){var nodeName=this.nodeName.toLowerCase();if(nodeName=='input')
|
html+="</table>";return html;}});$.fn.attachColorPicker=function(){return this.each(function(){var nodeName=this.nodeName.toLowerCase();if(nodeName=='input')
|
||||||
{var inst=new ColorPickerInstance();$.colorPicker._connectColorPicker(this,inst);}});};$.fn.getValue=function(){var inst=(this.length>0?$.colorPicker._getInst(this[0]._colId):null);return(inst?inst._getValue():null);};$.fn.setValue=function(value){var inst=(this.length>0?$.colorPicker._getInst(this[0]._colId):null);if(inst)inst._setValue(value);};$(document).ready(function(){$.colorPicker=new colorPicker();$(document.body).append($.colorPicker._colorPickerDiv).mousedown($.colorPicker._checkExternalClick);});})(jQuery);
|
{var inst=new ColorPickerInstance();$.colorPicker._connectColorPicker(this,inst);}});};$.fn.getValue=function(){var inst=(this.length>0?$.colorPicker._getInst(this[0]._colId):null);return(inst?inst._getValue():null);};$.fn.setValue=function(value){var inst=(this.length>0?$.colorPicker._getInst(this[0]._colId):null);if(inst)inst._setValue(value);};$(document).ready(function(){$.colorPicker=new colorPicker();$(document.body).append($.colorPicker._colorPickerDiv).mousedown($.colorPicker._checkExternalClick);});})(jQuery);
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user