-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsites.js
37 lines (33 loc) · 964 Bytes
/
websites.js
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
/*
List of websites to be monitored
*/
module.exports = [
/*{
//Web-Dialog Admin Site
alias: 'Web-Dialog Admin Site',
url: 'http://services.cap1.conduit-apps.com/cwd/admin/login',
interval: 1,
validate: function(statusCode, body) {
//This function should return true if the response is valid and false if not
return (statusCode === 200);
}
},*/
{
//Web-Dialog Service
alias: 'Web-Dialog Service',
url: 'http://services.cap1.conduit-apps.com/service/cwd/dialogVersions.json',
interval: 5
},
{
//Test
alias: 'Pinger Test',
url: 'http://cap1dev.conduit-apps.com/Apps/alon/pingerTest/test.php',
interval: 5
},
{
//Pinger App (so Heroku won't shut it down after an hour)
alias: 'Pinger App',
url: 'http://shielded-ravine-7847.herokuapp.com/',
interval: 5
}
];