SpringBoot2如何开启Actuator端点监控

背景

springboot本身提供了一套监控端点, 可以查看应用的基本信息、 健康程度、 配置等监控信息, 很容易上手。

Note: 此处所用SpringBoot版本: 2.1.4

开启Actuator

在Maven的pom.xml文件中添加 spring-boot-starter-actuator 依赖:

    org.springframework.boot    spring-boot-starter-actuator

登录后复制

直接运行项目, 在后端控制台会看到以下输出:

2019-06- 26 18: 07: 27.896 INFO 7868– – [restartedMain] o.s.b.a.e.web.EndpointLinksResolver: Exposing 2 endpoint(s) beneath base path ‘/actuator’

在浏览器访问 http://localhost:9000/actuator , 结果如下:

SpringBoot2如何开启Actuator端点监控

即SpringBoot2.0的actuator启动端点监控web端默认加载默认仅info, health两个可见的端点(除了actuator本身之外), 见官方文档说明

暴露其他端点(与SpringBoot 2.0之前的配置不太一样)

management:  endpoints:    web:      exposure:        include: "*"        exclude: env,beans

登录后复制

以上配置暴露了除 env , beans 之外的所有端点; 修改配置后, 在后端控制台会看到以下输出:

2019-06-26 18: 16: 03.951 INFO 7868– – [restartedMain] o.s.b.a.e.web.EndpointLinksResolver: Exposing 13 endpoint(s) beneath base path ‘/actuator’

再次在浏览器访问 http://localhost:9000/actuator , 结果如下:

SpringBoot2如何开启Actuator端点监控

SpringBoot2如何开启Actuator端点监控

SpringBoot2如何开启Actuator端点监控

SpringBoot2如何开启Actuator端点监控

Notes:

虽然端点 enabled , 但是还需要 exposed , 才能在Web端访问;

health 端点在默认情况下, 仅显示 “status”: “UP” ; 如需显示详细信息, 配置: management.endpoint.health.show-details=always

实际中, 请谨慎选择要开启的端点!

以上配置仅实现了对应用监控信息的获取, 但其实已经有专门用于展现这些 json 数据的管理端, 后续将实践一下SpringBoot Admin这套社区提供的可视化应用监控管理端。 SpringBoot Admin 文档对自己的介绍:

codecentric’ s Spring Boot Admin is a community project to manage and monitor your Spring Boot® applications.The applications register with our Spring Boot Admin Client(via HTTP) or are discovered using Spring Cloud®(e.g.Eureka, Consul).The UI is just a Vue.js application on top of the Spring Boot Actuator endpoints.

以上就是SpringBoot2如何开启Actuator端点监控的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2626014.html

(0)
上一篇 2025年3月7日 00:48:39
下一篇 2025年3月7日 00:48:48

AD推荐 黄金广告位招租... 更多推荐

相关推荐

发表回复

登录后才能评论