我有一个 Spring Boot 应用程序,我有这个依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>2.1.7.RELEASE</version> // From Parent
</dependency>
我还配置了我的application.yml
文件以公开指标:
management:
endpoints:
web:
exposure:
include: info, health, metrics
我还为 Kafka 创建了一个 Metrics bean:
@Bean
public KafkaConsumerMetrics kafkaConsumerMetrics() {
return new KafkaConsumerMetrics();
}
但是当我到达终点时,GET http://localhost:8080/actuator/metrics
我得到了一个404 Page Not Found
错误。
其他端点(信息/健康)工作:http://localhost:8080/actuator/info和http://localhost:8080/actuator/health
我缺少什么来获取千分尺数据?