Workflows + Cloud Scheduler can perform checks for about $0.53 per region per month. Create a workflow calling the endpoint, wrap it in a try/retry/except (possibly using a custom predicate), and add a trigger to run it every minute. As bonuses, you get full execution history and can write very flexible logic for remediation.
One trick is you'll want to store some kind of global flag on an outage so you don't keep triggering your remediation every minute throughout the outage. Firestore works well for this. (If you really want no dependencies, you can get clever with the workflow sleeping and triggering itself with state rather than using a recurring trigger.)
The invites in previous rounds were usually sent around 6PM PDT. Good luck, everyone! And remember many who get in have applied multiple times, and that building a company can be done with or without YC.
Workflows + Cloud Scheduler can perform checks for about $0.53 per region per month. Create a workflow calling the endpoint, wrap it in a try/retry/except (possibly using a custom predicate), and add a trigger to run it every minute. As bonuses, you get full execution history and can write very flexible logic for remediation.
One trick is you'll want to store some kind of global flag on an outage so you don't keep triggering your remediation every minute throughout the outage. Firestore works well for this. (If you really want no dependencies, you can get clever with the workflow sleeping and triggering itself with state rather than using a recurring trigger.)