mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
37 lines
823 B
JSON
37 lines
823 B
JSON
{
|
|
"ip": [{
|
|
"title": "Ping an ip",
|
|
"description": "Ping an ip address to get the latency",
|
|
"run_check": false,
|
|
"request": {
|
|
"address": "google.com"
|
|
},
|
|
"response": {
|
|
"status": "OK"
|
|
}
|
|
}],
|
|
"tcp": [{
|
|
"title": "Dial a tcp address",
|
|
"description": "Dial a tcp address",
|
|
"run_check": false,
|
|
"request": {
|
|
"address": "google.com:80"
|
|
},
|
|
"response": {
|
|
"status": "OK"
|
|
}
|
|
}],
|
|
"url": [{
|
|
"title": "Check a url",
|
|
"description": "Check a url endpoint",
|
|
"run_check": false,
|
|
"request": {
|
|
"address": "google.com"
|
|
},
|
|
"response": {
|
|
"status": "200 OK",
|
|
"code": 200
|
|
}
|
|
}]
|
|
}
|