-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendpoints.json
More file actions
68 lines (68 loc) · 1.65 KB
/
endpoints.json
File metadata and controls
68 lines (68 loc) · 1.65 KB
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
65
66
67
68
[
{
"name": "Api v2 Ping Check with Request Body",
"url": "http://localhost:8080/v2/ping",
"type": "http",
"request": {
"method": "POST",
"headers": {
"Message": "ping",
"PingPong": "pong",
"Content-Type": "application/json"
},
"body": {
"message": "ping"
}
}
},
{
"name": "Api v1 Ping Check",
"url": "http://localhost:8080/ping",
"type": "http"
},
{
"name": "Api v1 Ping Check Fail",
"url": "http://localhost:8080/v1/v2/ping",
"type": "http"
},
{
"name": "Api v1 Ping Check Fail",
"url": "http://localhost:8080/v2/v1/ping",
"type": "http"
},
{
"name": "Api v3 Ping Check With headers and Basic Auth",
"url": "http://localhost:8080/v3/ping",
"type": "http",
"request": {
"method": "POST",
"headers": {
"Message": "ping",
"PingPong": "pong",
"Content-Type": "application/json"
},
"body": {
"message": "ping"
}
},
"basic_auth": {
"username": "admin",
"password": ""
}
},
{
"name": "Api DNS Check",
"url": "http://localhost/",
"type": "dns"
},
{
"name": "Api Fail TCP Check",
"url": "http://localhost:8081/ping",
"type": "tcp"
},
{
"name": "Api 2 Fail TCP Check",
"url": "http://localhost:8082/ping",
"type": "tcp"
}
]