Our site is running on Google App Engine, and we've set up monitoring and uptime alerts.
We want to be able to report on site uptime as a %, where the site is consider up if it can be accessed from any of the 6 locations:
- If location A cannot access the site, but locations B, C, D, E and F can. The site is up.
- If locations A, B, C, D and E cannot access the site, but location F can. The site is up.
- If locations A, B, C, D, E and F cannot access the site. The site is down.
Currently the % calculation is: (1 - Total number of failed checks) / (Total number of checks). This unfortunately means that the uptime is affected by a single location being unable to access the site.
Is it possible to get the uptime calculation we're after?