Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 1.3 KB

prometheus-nobug.md

File metadata and controls

32 lines (30 loc) · 1.3 KB

prometheus-noBug

  • 引入pom
    • 如果提示版本不明确,需确定当期springboot对应版本号
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    
    <dependency>
        <groupId>io.micrometer</groupId>
        <artifactId>micrometer-registry-prometheus</artifactId>
    </dependency>
</dependencies>
  • 添加配置文件yml
management:
  endpoints:
    web:
      exposure:
        include: health,info,prometheus
  metrics:
    tags:
      application: ${spring.application.name}