-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-sample.json
33 lines (33 loc) · 895 Bytes
/
config-sample.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
{
"accessories": [
{
"accessory": "IsItDown",
"name": "Camera Status",
"url": "https://192.168.0.186",
"auth": {
"user": "root",
"pass": "ismart12"
},
"maxTryOuts": 3,
"interval": 300000,
"expectedStatusCode": 200,
"debug": true
},
{
"accessory": "IsItDown",
"name": "MyWebsiteIsItDown",
"url": "http://sahilchaddha.com",
"maxTryOuts": 3,
"interval": 1000,
"expectedStatusCode": 200
},
{
"accessory": "IsItDown",
"name": "MyWebsiteIsItUP",
"url": "http://sahilchaddha.com/pingu",
"maxTryOuts": 3,
"interval": 1000,
"expectedStatusCode": 404
}
]
}