深入理解Spring Cloud与微服务构建(第2版)
上QQ阅读APP看书,第一时间看更新

4.4.1 查看运行程序的健康状态

打开浏览器访问“http://localhost:9001/actuator/health”,可以查看应用程序的运行状态和磁盘状态等信息。浏览器显示的信息如下:

{
   "status": "UP",
   "diskSpace": {
      "status": "UP",
      "total": 392461021184,
      "free": 381625602048,
      "threshold": 10485760
   }
}

“/health”API接口提供的信息是由一个或多个健康指示器提供的健康信息的组合结果。如表4-2所示,列出了Spring Boot自带的健康指示器。

表4-2 Spring Boot自带的健康指示器