-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
executable file
·64 lines (63 loc) · 1.31 KB
/
config.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"title": "Availability Monitor",
"hostname": "0.0.0.0",
"port": 8080,
"client": {
"transports": []
},
"services": [
{
"name": "Sundance.org",
"label": "Sundance.org",
"check": "http",
"host": "www.sundance.org",
"port": 80,
"path": "/"
},
{
"name": "google.com",
"label": "Google",
"check": "http",
"host": "www.google.com",
"port": 80,
"path": "/"
}
],
"plugins" : {
"console" : {
"enable": false
},
"irc" : {
"enable": false,
"server": "irc.freenode.net",
"nick": "mystatusdashboardsample",
"options": {
"debug": false,
"channels": ["#mystatusdashboardsample"]
}
},
"heartbeat": {
"enable": true,
"period": 20000
},
"mail": {
"enable": false,
"sender": "your@email.com",
"to": "your@email.com",
"subject": "[statusdashboard]: Alert",
"options": {
"nodemailer": {
"host": "smtp.gmail.com",
"port": 465,
"use_authentication": true,
"ssl": true,
"user": "your@email.com",
"pass": "password",
"debug": false
}
}
}
},
"serviceInterval": 25000,
"serviceDelay": 2000
}