为了账号安全,请及时绑定邮箱和手机立即绑定

将应用程序迁移到 Spring boot 2 后无法向 /actuator/prometheus

将应用程序迁移到 Spring boot 2 后无法向 /actuator/prometheus

眼眸繁星 2023-07-19 10:27:34
将我的应用程序(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;@Configurationpublic class HystrixMetricsConfig {   @Bean   HystrixMetricsBinder registerHystrixMetricsBinder() {      return new HystrixMetricsBinder();   }}为了避免假设此类教程/答案的定义是正确的,我从头开始设置了一个简单的 Spring Boot 项目,其中包含一个简单的控制器、hystrix 和上述依赖项,并且指标确实出现在 /actuator/prometheus 中,无需其他步骤。我的应用程序比简单项目有更多的依赖项,所以我认为其他东西可能会覆盖/禁用指标绑定。我不仅被告知实际问题是什么,而且还在努力尝试了解如何解决此类问题。是否有任何可以激活的千分尺/Spring 启动日志(自动配置报告除外)来了解发生了什么?
查看完整描述

1 回答

?
慕沐林林

TA贡献2016条经验 获得超9个赞

在遵循整个自定义 hystrix 指标绑定过程之后,我最终发现一切都被正确绑定,至少在原则上是这样。


然后,我尝试在第一次执行 hystrix 命令时触发断点,以检查注册表和发布者的情况。在方法中放置断点


HystrixMetricsPublisherThreadPool getPublisherForThreadPool(HystrixThreadPoolKey threadPoolKey, HystrixThreadPoolMetrics metrics, HystrixThreadPoolProperties properties)

在HystrixMetricsPublisherFactory课堂上,我发现该HystrixPlugins实例与设置发布者的时刻不同。检查应用程序的所有代码后,我发现为了设置自定义事件通知程序,实例正在重置。


@EventListener(ApplicationReadyEvent.class)

    public void doAfterStartup() {

        Hystrix.reset();

        registerCustomHystrixEventNotifier(circuitBreakerHystrixEventNotifier);

        logger.info("hello world, application started up");

    }

然后,我修改了该方法以注册事件通知程序,而无需重置之前配置的自动配置,并且 hystrix 指标现在显示在 prometheus 端点中。


查看完整回答
反对 回复 2023-07-19
  • 1 回答
  • 0 关注
  • 130 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信