Spring Boot:健康端点缺少领事健康指标

SpringBoot : Consul Health indicator missing from the Health endpoint

我有一个基于 SpringBoot 的 Web 应用程序,它公开了一个 consul 健康指示器 bean。
该 bean 由 springboot 的自动配置正确创建和初始化,然而,尽管相关配置 属性“management.health.consul.enabled”设置为,但指示器未显示在执行器健康端点中真:

{
   "status": "UP",
   "components": {
        "Kafka": {...},
        "SchemaRegistry": {...},
        "discoveryComposite": {...},
        "diskSpace": {...},
        "ping": {...},
        "refreshScope": {...}
    }
}

经过进一步检查,我发现了负责获取所有可用指标 (HealthEndpointConfiguration.java) 的波纹管代码段:

    @Bean
    @ConditionalOnMissingBean
    HealthContributorRegistry healthContributorRegistry(ApplicationContext applicationContext,
            HealthEndpointGroups groups) {
        Map<String, HealthContributor> healthContributors = new LinkedHashMap<>(
                applicationContext.getBeansOfType(HealthContributor.class));
        if (ClassUtils.isPresent("reactor.core.publisher.Flux", applicationContext.getClassLoader())) {
            healthContributors.putAll(new AdaptedReactiveHealthContributors(applicationContext).get());
        }
        return new AutoConfiguredHealthContributorRegistry(healthContributors, groups.getNames());
    }

在那里设置一个断点,我看到 ConsulHealthIndicator bean 确实没有在 applicationContext.getBeansOfType(HealthContributor.class) 调用的输出中列出显示如下:

但是当我使用父应用程序上下文测试相同的调用时,我得到以下信息:

有人可以解释为什么这个特定的 bean 出现在 root context but not in the child context 中吗?

有没有办法强制在子上下文中进行初始化,以便在健康端点中正确注册?

我目前正在使用

提前谢谢你。


编辑

我已附上 a sample project 允许重现问题。
我还包含了应用程序使用的 consul 配置(您可以通过 consul import 命令导入它)。
运行 上面的示例并转到健康端点 (localhost:8080/monitoring/health) 你会清楚地看到列表中缺少 consul 组件。

为了让 consul 指标正常工作,我必须提供自己的 HealthContributorRegistry,在执行 HealthContributor bean 查找时我会在其中考虑父上下文:

  @Bean
  HealthContributorRegistry healthContributorRegistry(
      ApplicationContext applicationContext, HealthEndpointGroups groups) {
    Map<String, HealthContributor> healthContributors =
        new LinkedHashMap<>(applicationContext.getBeansOfType(HealthContributor.class));
    ApplicationContext parent = applicationContext.getParent();
    while (parent != null) {
      healthContributors.putAll(parent.getBeansOfType(HealthContributor.class));
      parent = parent.getParent();
    }
    return new DefaultHealthContributorRegistry(healthContributors);
  }

这是一个临时解决方法,理想情况下,consul 指示器应该像其他健康贡献者一样开箱即用。