将我的应用程序(stack spring boot、camel、hystrix)从 Spring Boot 1.5 迁移到 Spring Boot 2 后。我无法让 hystrix 指标显示在 /actuator/prometheus 中。
正如许多解决方案和教程所建议的那样,我已确保具有以下依赖项
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<version>${micrometer-version}</version>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<version>${micrometer-version}</version>
</dependency>
并添加了以下配置类,我确信它正在被实例化,因为我已经在 Spring Boot 自动配置日志中检查过:
import io.micrometer.core.instrument.binder.hystrix.HystrixMetricsBinder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class HystrixMetricsConfig {
@Bean
HystrixMetricsBinder registerHystrixMetricsBinder() {
return new HystrixMetricsBinder();
}
}
为了避免假设此类教程/答案的定义是正确的,我从头开始设置了一个简单的 Spring Boot 项目,其中包含一个简单的控制器、hystrix 和上述依赖项,并且指标确实出现在 /actuator/prometheus 中,无需其他步骤。
我的应用程序比简单项目有更多的依赖项,所以我认为其他东西可能会覆盖/禁用指标绑定。
我不仅被告知实际问题是什么,而且还在努力尝试了解如何解决此类问题。是否有任何可以激活的千分尺/Spring 启动日志(自动配置报告除外)来了解发生了什么?
慕沐林林
相关分类