检查系统是否正常运行,用于监控和负载均衡
完整 URL
http://8.148.151.8:4001/health
分类
{ "status": "healthy" }
// GET 请求示例 const response = await fetch('http://8.148.151.8:4001/health'); const data = await response.json(); console.log(data);