百度360必应搜狗淘宝本站头条
当前位置:网站首页 > IT知识 > 正文

SpringBoot如何使用Micrometer上报指标给prometheus

liuian 2025-09-18 22:48 16 浏览

在 Spring Boot 应用中使用 Micrometer 将指标上报给 Prometheus 是一个非常标准且常见的做法。整个过程主要分为添加依赖配置端点和**(可选)自定义指标**三个步骤。

步骤 1:添加必要的依赖

需要在 pom.xml(Maven)或 build.gradle(Gradle)中添加以下依赖:

Maven (pom.xml)

<dependencies>
<!-- Spring Boot Actuator (核心,提供健康检查、指标等端点) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Micrometer Registry for Prometheus (将指标转换为 Prometheus 格式) -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
<!-- (可选) 如果你使用 Spring Web (MVC), 会自动收集 HTTP 请求指标 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

注意:micrometer-registry-prometheus 依赖会自动引入 Micrometer 的核心库,所以你不需要单独引入 micrometer-core。

步骤 2:配置 application.yml 或 application.properties

为了让 Prometheus 能够抓取指标,需要暴露 /actuator/prometheus 端点。

application.yml

management:
  endpoints:
    web:
      exposure:
        # 暴露 prometheus 端点,让 Prometheus 可以访问
        include: health,info,prometheus
  endpoint:
    prometheus:
      enabled: true
    health:
      show-details: always # 可选:显示健康详情

application.properties

# 暴露 prometheus 端点
management.endpoints.web.exposure.include=health,info,prometheus
# 启用 prometheus 端点
management.endpoint.prometheus.enabled=true
# (可选) 显示健康详情
management.endpoint.health.show-details=always

重要:/actuator/prometheus 是 Prometheus 抓取数据的标准端点。

步骤 3:启动应用并验证

  1. 启动Spring Boot 应用。
  2. 访问 http://localhost:8080/actuator,应该能看到 prometheus 端点。
  3. 访问 http://localhost:8080/actuator/prometheus,应该能看到类似如下的 Prometheus 格式指标:
# HELP http_server_requests_seconds 
# TYPE http_server_requests_seconds summary
http_server_requests_seconds_count{method="GET",uri="/actuator/prometheus",...} 1.0
http_server_requests_seconds_sum{method="GET",uri="/actuator/prometheus",...} 0.055231211
# HELP jvm_memory_used_bytes 
# TYPE jvm_memory_used_bytes gauge
jvm_memory_used_bytes{area="heap",id="G1 Young Generation",} 12345678.0
...

这些就是 Micrometer 收集并格式化后供 Prometheus 抓取的数据。

步骤 4:(可选)自定义业务指标

可以轻松地创建自己的指标。Spring Boot 会自动注入 MeterRegistry。

import io.micrometer.core.instrument.Counter;
import io.micrometer.core.instrument.MeterRegistry;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MyController {

    private final Counter myCustomCounter;

    @Autowired
    public MyController(MeterRegistry registry) {
        // 创建一个自定义计数器
        this.myCustomCounter = Counter.builder("my.custom.requests")
                .description("A custom counter for demo")
                .tag("type", "demo") // 可以添加标签(tags)
                .register(registry);
    }

    @GetMapping("/demo")
    public String demo() {
        // 每次调用此方法,计数器 +1
        myCustomCounter.increment();
        return "Hello from custom metric!";
    }
}

访问 /demo 接口几次后,再访问 /actuator/prometheus,就能看到类似:

my_custom_requests_total{type="demo",} 3.0

步骤 5:配置 Prometheus 抓取

最后,在prometheus.yml 配置文件中,添加一个 job 来抓取这个应用的指标:

scrape_configs:
- job_name: 'spring-boot-app'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['localhost:8080'] # 替换为你的应用实际地址

启动 Prometheus 后,它就会定时从Spring Boot 应用拉取指标。

总结

  1. 加依赖:spring-boot-starter-actuator + micrometer-registry-prometheus
  2. 配端点:在 application.yml 中暴露 /actuator/prometheus
  3. (可选)写代码:通过 MeterRegistry 创建自定义指标
  4. 配 Prometheus:在 prometheus.yml 中添加抓取任务

完成以上步骤,Spring Boot 应用就能通过 Micrometer 将丰富的指标数据上报给 Prometheus 了,为后续的监控、告警和可视化(如 Grafana)打下基础。

相关推荐

搭建一个20人的办公网络(适用于20多人的小型办公网络环境)

楼主有5台机上网,则需要一个8口路由器,组网方法如下:设备:1、8口路由器一台,其中8口为LAN(局域网)端口,一个WAN(广域网)端口,价格100--400元2、网线N米,这个你自己会看了:)...

笔记本电脑各种参数介绍(笔记本电脑各项参数新手普及知识)

1、CPU:这个主要取决于频率和二级缓存,频率越高、二级缓存越大,速度越快,现在的CPU有三级缓存、四级缓存等,都影响相应速度。2、内存:内存的存取速度取决于接口、颗粒数量多少与储存大小,一般来说,内...

汉字上面带拼音输入法下载(字上面带拼音的输入法是哪个)

使用手机上的拼音输入法打成汉字的方法如下:1.打开手机上的拼音输入法,在输入框中输入汉字的拼音,例如“nihao”。2.根据输入法提示的候选词,选择正确的汉字。例如,如果输入“nihao”,输...

xpsp3安装版系统下载(windowsxpsp3安装教程)

xpsp3纯净版在采用微软封装部署技术的基础上,结合作者的实际工作经验,融合了许多实用的功能。它通过一键分区、一键装系统、自动装驱动、一键设定分辨率,一键填IP,一键Ghost备份(恢复)等一系列...

没有备份的手机数据怎么恢复

手机没有备份恢复数据方法如下1、使用数据线将手机与电脑连接好,在“我的电脑”中可以看到手机的盘符。  2、将手机开启USB调试模式。在手机设置中找到开发者选项,然后点击“开启USB调试模式”。  3、...

电脑怎么激活windows11专业版

win11专业版激活方法有多种,以下提供两种常用的激活方式:方法一:使用激活密钥激活。在win11桌面上右键点击“此电脑”,选择“属性”选项。进入属性页面后,点击“更改产品密钥或升级windows”。...

华为手机助手下载官网(华为手机助手app下载专区)

华为手机助手策略调整,已不支持从应用市场下载手机助手,目前华为手机助手是需要在电脑上下载或更新手机助手到最新版本,https://consumer.huawei.com/cn/support/his...

光纤线断了怎么接(宽带光纤线断了怎么接)

宽带光纤线断了可以重接,具体操作方法如下:1、光纤连接的时候要根据束管内,同色相连,同芯相连,按顺序进行连接,由大到小。一般有三种连接方法,分别是熔接、活动连接和机械连接。2、连接的时候要开剥光缆,抛...

深度操作系统安装教程(深度操作系统安装教程图解)
  • 深度操作系统安装教程(深度操作系统安装教程图解)
  • 深度操作系统安装教程(深度操作系统安装教程图解)
  • 深度操作系统安装教程(深度操作系统安装教程图解)
  • 深度操作系统安装教程(深度操作系统安装教程图解)
win7旗舰版和专业版区别(win7旗舰版跟专业版)

1、功能区别:Win7旗舰版比专业版多了三个功能,分别是Bitlocker、BitlockerToGo和多语言界面; 2、用途区别:旗舰版的功能是所有版本中最全最强大的,占用的系统资源,...

万能连接钥匙(万能wifi连接钥匙下载)

1、首先打开wifi万能钥匙软件,若手机没有开启WLAN,就根据软件提示打开WLAN开关;2、打开WLAN开关后,会显示附近的WiFi,如果知道密码,可点击相应WiFi后点击‘输入密码’连接;3、若不...

雨林木风音乐叫什么(雨林木风是啥)

雨林木风的创始人是陈年鑫先生。陈年鑫先生于1999年创立了雨林木风公司,其初衷是为满足中国市场对高品质、高性能电脑的需求。在陈年鑫先生的领导下,雨林木风以技术创新、产品质量和客户服务为核心价值,不断推...

aics6序列号永久序列号(aics6破解序列号)

关于AICS6这个版本,虽然是比较久远的版本,但是在功能上也是十分全面和强大的,作为一名平面设计师的话,AICS6的现有的功能已经能够应付几乎所有的设计工作了……到底AICC2019的功能是不是...

win7正在启动windows 卡住(win7正在启动windows卡住了 进入安全模式)
  • win7正在启动windows 卡住(win7正在启动windows卡住了 进入安全模式)
  • win7正在启动windows 卡住(win7正在启动windows卡住了 进入安全模式)
  • win7正在启动windows 卡住(win7正在启动windows卡住了 进入安全模式)
  • win7正在启动windows 卡住(win7正在启动windows卡住了 进入安全模式)
手机可以装电脑系统吗(手机可以装电脑系统吗怎么装)

答题公式1:手机可以通过数据线或无线连接的方式给电脑装系统。手机安装系统需要一定的技巧和软件支持,一般需要通过数据线或无线连接的方式与电脑连接,并下载相应的软件和系统文件进行安装。对于大部分手机用户来...