在 Spring Boot 3的应用中。我在Jaeger UI中获得了对/context/actuator/health/liveness和/context/actuator/health/readiness的端点调用。我搜索了一个配置,以有一个跳过模式或类似的东西,但没有找到任何。如何忽略对/health/liveness和/health/readiness的API调用,使其不会导出到Jaeger?
iklwldmw1#
我使用SkipPattern bean解决了我的问题
@Bean SkipPatternSampler skipPatternSampler() { return new SkipPatternSampler(Pattern.compile("/actuator/health/(liveness|readiness)")); }
1条答案
按热度按时间iklwldmw1#
我使用SkipPattern bean解决了我的问题