Java Spring Boot Prometheus 指标添加 log4j2_events_total 指标
Posted
技术标签:
【中文标题】Java Spring Boot Prometheus 指标添加 log4j2_events_total 指标【英文标题】:Java Spring Boot Prometheus metrics adding log4j2_events_total metric 【发布时间】:2019-08-09 00:41:51 【问题描述】:我已经为 Prometheus 和 Actuactor 添加了依赖项:
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<version>$micrometer-registry-prometheus.version</version>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<version>$micrometer-registry-prometheus.version</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<artifactId>spring-boot-starter-logging</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
但如果我转到端点 /actuator/promehteus,即使我还添加了 Spring 的 log4j2 依赖项,log4j2_events_total 指标也不存在启动启动器,我是否缺少一些额外的配置?
【问题讨论】:
您的意思是您已将spring-boot-starter-log4j2
添加为依赖项?
是的,我已经添加了
【参考方案1】:
试试这个,我创建了一个新项目,在添加以下依赖项后它对我有用。确保添加 spring-boot-starter-web 依赖项并从中排除 spring-boot-starter-logging 以避免出现SLF4J: Class path contains multiple SLF4J bindings.
ERROR。
<!-- ########################################### -->
<!-- spring Management dependencies for Actuator -->
<!-- ########################################### -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
<!-- ####################### -->
<!-- log4j dependencies -->
<!-- ####################### -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Add Log4j2 Dependency -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
您可以在以下位置找到示例项目:- https://github.com/ishivesh/demo-processor
【讨论】:
以上是关于Java Spring Boot Prometheus 指标添加 log4j2_events_total 指标的主要内容,如果未能解决你的问题,请参考以下文章
如何 JUnit 测试 Spring-Boot 的 Application.java
markdown Spring Boot #SpringBoot #Spring #Java
小马哥-Java 微服务实践 - Spring Boot 系列-01Java 微服务实践 - Spring Boot 系列初体验
如何使用 graphql-spring-boot 向 GraphQL Java 添加检测?