Files
services/ping/examples.json
Asim Aslam 420f0706b0 add a ping service (#372)
* add a ping service

* add examples and public api file

* add minecraft server ping
2022-02-14 15:05:28 +00:00

37 lines
791 B
JSON

{
"ip": [{
"title": "Ping an ip",
"description": "Ping an ip address to get the latency",
"run_check": false,
"request": {
"google.com"
},
"response": {
"status": "OK"
}
}],
"tcp": [{
"title": "Dial a tcp address",
"description": "Dial a tcp address",
"run_check": false,
"request": {
"google.com:80"
},
"response": {
"status": "OK"
}
}],
"http": [{
"title": "Check a url",
"description": "Check a url endpoint",
"run_check": false,
"request": {
"google.com"
},
"response": {
"status": "200 OK",
"code": 200
}
}]
}