Spring Boot Actuator 监控实践

2021-02-18 06:20

阅读:567

标签:实践   XML   自动化   alt   ati   end   beans   app   应用   

Actuator是Spring Boot提供的对应用系统的自省和监控的集成功能,可以查看应用配置的详细信息,例如自动化配置信息、创建的Spring beans以及一些环境属性等。

1、创建Spring Boot工程,pom.xml的配置如下

    org.springframework.boot
        spring-boot-starter-parent
        2.2.6.RELEASEjavax.servlet
            javax.servlet-api
            3.1.0providedorg.springframework.boot
            spring-boot-starter-web
        org.springframework.boot
            spring-boot-starter
        org.springframework.boot
            spring-boot-starter-actuator
        

  

2、applicatoin.yml 配置如下

#定义监控访问的端口
management:
  server:
    port: 9090
  # 默认Actuator只暴露了health和info端点,在SpringBoot的application.yml配置文件中加入这句话暴露所有端点
  endpoints:
    web:
      exposure:
        include: "*"

  

3、访问。

返回的是actuator返回提供的接口

技术图片

 

 

 

4、提供的接口介绍

技术图片

 

 



Spring Boot Actuator 监控实践

标签:实践   XML   自动化   alt   ati   end   beans   app   应用   

原文地址:https://www.cnblogs.com/linlf03/p/12692158.html


评论


亲,登录后才可以留言!