/health before other routing:
/health is therefore documentation for a recommended function-owned route. It is not part of the Edge Compute Observability REST API.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check out our upcoming events and meetups! View events →
Implement and externally probe an application-level health route for an Edge Compute function.
/health before other routing:
if (req.url === '/health' || req.url?.startsWith('/health/')) {
res.writeHead(200);
res.end();
return;
}
https://<function-hostname>/health
/health is therefore documentation for a recommended function-owned route. It is not part of the Edge Compute Observability REST API.Was this page helpful?