spring boot 项目 一般做监控,是使用 spring actuator 健康检查,使用prometheus 来做监控,详细的操作流程如下
一、spring actuator 应用监控
- 概念介绍
Spring Boot Actuator 模块提供了生产级别的功能,比如健康检查,审计,指标收集,HTTP 跟踪等,帮助我们监控和管理 Spring Boot 应用。这个模块是一个采集应用内部信息暴露给外部的模块,上述的功能都可以通过 HTTP 和 JMX 访问。
- 快速入门
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
二、 集成 prometheus
https://www.cnblogs.com/chanshuyi/p/06_prometheus_with_springboot_actuator.html