Would it be right to say this is sentry.io meets envoy, grpc, and konghq? Super interesting. Congratulations.<p>How do I manage my API integrations, you ask?<p>Global Accelerator (GLA) is a key infrastructure piece for a HA service I'm building but for the data-plane. It is such a hassle-free but slightly expensive way to vend anycast IPs (no need to purchase ASNs and/or announce routes from colos across the globe) and have the traffic load-balanced to 25+ AWS regions, that I recommend it instantly to anyone architecting HA services. <a href="https://fly.io" rel="nofollow">https://fly.io</a> and <a href="https://stackpath.com/edge-computing" rel="nofollow">https://stackpath.com/edge-computing</a> are viable alternatives. Cloudflare announced MagicTransit which isn't as smooth as AWS GLA in terms of developer experience, whilst Azure and Google offer global-load-balancers, too, and may be even before AWS announced it in 2018? So, really, I think utilizing GLA is something folks should do if they run global HA services. The only issue with using NLB behind AWS GLA is the client-IP is not preserved. In our case, we needed it, so we had to get creative with sticky routing and port assignment (listeners) to do load-balancing / traffic-shaping.<p>Another HA trick I plan to employ is to use Cloudflare-Workers (200+ PoPs) to front https-traffic to our control-plane endpoints. It lacks observability, monitoring, and alerting unless you're on Cloudflare's enterprise plans. The rate-limiting option is expensive ($0.05 per 10k good requests). I'm sure there's no way to queue requests out-of-the-box, so I can very much see a need for what you've built, and where you guys fit in.<p>To be honest, I'd be surprised if firebase or API Gateway or KongHQ don't already do what you do, as well. Is that case? If so, keep at it. It is a real need. And as you point out, something that I've <i>had to</i> build for every service and integration point.<p>A few questions (I went through your website and docs, but here I am):<p>- How do you handle secrets that the clients might need to share with your service, like Apikeys or Access/SecretKeys?<p>- Do you also push logs to the customers in addition to them pulling it from your endpoints / UI?<p>- A bit curious about your logging, monitoring, and alerting infrastructure-- Is it ran on top of CloudWatch or Prometheus or Loggly or Elasticsearch or Lightstep or...?<p>- Do you support proxying http/REST APIs only?<p><a href="https://autocode.stdlib.com/" rel="nofollow">https://autocode.stdlib.com/</a> which was discussed a few weeks ago here looks, to me, like a good addition to what you're building.