Reputation: 2063
How do I specify a health check endpoint in my GAE health_check entry in app.yaml? I see options for various thresholds but I have no indication of how to set a custom endpoint or even if my options are being respected.
The app engine documentation states that /_ah/health
is used for health checks but I would like to provide my own health checks.
Upvotes: 0
Views: 1443
Reputation: 831
You can still write your own custom health-checking code. It just needs to reply to /_ah/health request with HTTP 200.
Upvotes: 1