1 nrpe
<nrpe
host='host'
port='port'
timeout='timeout'
ssl='ssl'
command='command'
/>
Attributes | ||||
---|---|---|---|---|
Name | Type | Required | Default | Description |
Ahost | string | |||
Aport | integer | 5666 | Access port, if not indicated it is used the port 5666. | |
Atimeout | integer | 10 | ||
Assl | boolean | |||
Acommand | string |
Returns | |
---|---|
Type | Description |
Object | Returns a Nrpe Packet. |
Exceptions
required attribute 'host' not defined
The name of the host has not been specified.
Example
Copy
<xsql-script name='sample'> <body> <set name='value_1'>10</set> <set name='value_2'>20</set> <!-- Shows 0 (false) --> <println><eval.eq><valor_1 /><valor_2 /></eval.eq></println> <set name='value_2'>10</set> <!-- Shows 1 (true) --> <println><eval.eq><valor_1 /><valor_2 /></eval.eq></println> </body> </xsql-script>