当前位置:AIGC资讯 > 数据采集 > 正文

prometheus采集springboot程序指标数据

1.springboot程序添加依赖项
<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
        <groupId>io.prometheus</groupId>
        <artifactId>simpleclient_spring_boot</artifactId>
        <version>0.5.0</version>
    </dependency>

2.程序入口增加注解
@EnablePrometheusEndpoint
@EnableSpringBootMetricsCollector

3.修改配置文件
spring.metrics.servo.enabled=false

4.运行程序,访问prometheus接口获取指标

更新时间 2023-11-08