Describe the feature
We want to track when InNoHassle was inaccessible because of network problem and get the statistics of downtimes.
Suggested solution
Create a script that constantly makes requests to innohassle.ru and api.innohassle.ru. If there is a problem, it should notify us via Telegram in the start and in the end of the issue.
The script should be run on different servers: inside Innopolis (also in different subnets), in Russia, and outside of Russia, so we can understand where the issue exists.
Additional context
You could also check the time of request:
curl -w "\nDNS: %{time_namelookup}s\nConnect: %{time_connect}s\nTTFB: %{time_starttransfer}s\nTotal: %{time_total}s\n" -o /dev/null -s https://innohassle.ru
DNS: 0.086959s
Connect: 0.090406s
TTFB: 0.166713s
Total: 0.166766s
Describe the feature
We want to track when InNoHassle was inaccessible because of network problem and get the statistics of downtimes.
Suggested solution
Create a script that constantly makes requests to innohassle.ru and api.innohassle.ru. If there is a problem, it should notify us via Telegram in the start and in the end of the issue.
The script should be run on different servers: inside Innopolis (also in different subnets), in Russia, and outside of Russia, so we can understand where the issue exists.
Additional context
You could also check the time of request: