首页 > 编程语言 > Springboot actuator生产就绪功能实现解析
2020
09-29

Springboot actuator生产就绪功能实现解析

Spring Boot包含许多附加功能,可帮助您在将应用程序投入生产时对其进行监视和管理。可以选择使用HTTP端点或JMX管理和监视您的应用程序。审核,运行状况和指标收集可以自动应用于您的应用程序。

Springboot Actuator,它提供了很多生产级的特性,比如说监控和度量spring boot应用程序。Actuator的这些特性可以通过众多的REST断点,远程shell和JMX获得。

只有基于Spring MVC的应用程序才可以通过HTTP终端来监控应用程序的运行指标。

使用Spring Boot actuator配置相关依赖:

<dependencies>
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
  </dependency>
</dependencies>

Web应用默认使用8080端口运行。一旦这个应用启动了,你可以通过http://localhost:8080/actuator来展示所有通过HTTP暴露的endpoints。

默认情况只暴露/actuator/health与/actuator/info这两个endpoint,可能通过修改spring的配置文件application.properties (或application.yml 配置文件名根据项目实际情况而不同)增加 management.endpoints.web.exposure.include=* 一行配置内容暴露其他的endpoint(除了shutdown这个endpoint外)

增加management.endpoint.shutdown.enabled=true 配置可暴露shutdown。

/actuator/health

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自学编程网。

编程技巧