-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml.bak
33 lines (30 loc) · 1.3 KB
/
config.xml.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- Configuration of HostMonitor -->
<config>
<!-- Common configuration properties -->
<!-- Monitoring interval, will run monitoring process each 'interval' sec -->
<interval>30</interval>
<!-- ICMP_TCP Timeout, will assume that ping failed after 'tcpTimeout' sec pass -->
<tcpTimeout>3</tcpTimeout>
<!-- The main listener, will receive full report in case of any error -->
<listener>[email protected]</listener>
<!-- Skip interval, will skip duplicate errors within 'skipInterval' sec -->
<skipInterval>60</skipInterval>
<!-- SMTP configuration properties -->
<smtp>
<!-- SMTP Host -->
<host>mail.comodo.od.ua</host>
<!-- Authentication data for SMTP Host -->
<user>apavlenko</user>
<!-- <password></password> -->
<!-- Data of notification mail -->
<from>[email protected]</from>
<subject>Error while monitoring</subject>
</smtp>
<!-- The list of targets to monitor -->
<targets>
<!-- Example of target, the 'listener' attribute is optional
<target protocol="ICMP_TCP" host="localhost" listener="[email protected]"/> -->
<!--target protocol="ICMP_TCP" host="127.0.0.1"/-->
<target protocol="SOCKET" host="127.0.0.1" name="My host" port="9443"/>
</targets>
</config>