SpringBoot系列:SpringBoot使用Actuator

Posted Tassdar

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot系列:SpringBoot使用Actuator相关的知识,希望对你有一定的参考价值。

Actuator为springboot提供了运行状态监控的功能

通过集成它我们可以试试获取到应用程序的运行信息

首先,在pom.xml中引入起步依赖

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

然后在配置文件中添加配置节点,注意如果有多个配置文件需要添加在application.yml中
并且把actuator端口设置为其他端口,如果不设置的话会和程序共享一个端口,可以通过endpoint
来制定不通配置节点的特殊配置,例如我们这里开启了可以通过actuator来关闭应用程序
设置可以访问的节点  * 为全部
management:
  endpoints:
    web:
      exposure:
        include: "*"

  endpoint:
    health:
      show-details: always
    shutdown:
      enabled: true
  server:
    port: 9001

设置完成后启动程序,我们可以看到现在有两个端口正在被监听,一个是应用程序的端口一个是actuator的端口

 

 通过访问actuator的API可以获取目前应用程序的运行信息\'

 

以上是关于SpringBoot系列:SpringBoot使用Actuator的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 系列

springboot整合系列

SpringBoot系列:SpringBoot使用Actuator

spring boot 学习笔记

SpringBoot系列十:SpringBoot整合Redis

SpringBoot系列之日志框架使用教程