-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
43 lines (43 loc) · 970 Bytes
/
sample.json
File metadata and controls
43 lines (43 loc) · 970 Bytes
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
{
"services": [
{
"id": 1,
"name": "google website",
"url": "https://google.com",
"type": "http",
"cron": "* * * * *",
"data": {
"headers": {
"Authorization": "Basic user:password"
},
"method": "GET",
"status": 200
}
},
{
"id": 2,
"name": "cloud redis",
"url": "redis://localhost:6379",
"type": "redis",
"cron": "1 * * * *",
"data": { "password": "password", "timeout": 5 }
},
{
"id": 3,
"name": "local postgres",
"url": "postgres://postgres:password@localhost:5432/?sslmode=disable",
"type": "sql",
"cron": "1 * * * *",
"data": { "driver": "postgres", "timeout": 5 }
},
{
"id": 4,
"name": "mongo db",
"url": "mongodb://mongo:password@localhost:27017/db",
"type": "mongo",
"cron": "1 * * * *",
"data": { "timeout": 5 }
}
],
"results": []
}