Spring Boot Actuator 监控实践
2021-02-18 06:20
标签:实践 XML 自动化 alt ati end beans app 应用 Actuator是Spring Boot提供的对应用系统的自省和监控的集成功能,可以查看应用配置的详细信息,例如自动化配置信息、创建的Spring beans以及一些环境属性等。 1、创建Spring Boot工程,pom.xml的配置如下 2、applicatoin.yml 配置如下 3、访问。 返回的是actuator返回提供的接口 4、提供的接口介绍 Spring Boot Actuator 监控实践 标签:实践 XML 自动化 alt ati end beans app 应用 原文地址:https://www.cnblogs.com/linlf03/p/12692158.html
#定义监控访问的端口
management:
server:
port: 9090
# 默认Actuator只暴露了health和info端点,在SpringBoot的application.yml配置文件中加入这句话暴露所有端点
endpoints:
web:
exposure:
include: "*"
上一篇:C/C++ 的 指针/引用 传参
下一篇:python脚本如何同时运行多个
文章标题:Spring Boot Actuator 监控实践
文章链接:http://soscw.com/index.php/essay/56928.html