spring Sping Boot 3 -忽略活动/就绪跟踪

tjvv9vkg  于 2023-05-16  发布在  Spring
关注(0)|答案(1)|浏览(104)

在 Spring Boot 3的应用中。我在Jaeger UI中获得了对/context/actuator/health/liveness和/context/actuator/health/readiness的端点调用。
我搜索了一个配置,以有一个跳过模式或类似的东西,但没有找到任何。如何忽略对/health/liveness和/health/readiness的API调用,使其不会导出到Jaeger?

iklwldmw

iklwldmw1#

我使用SkipPattern bean解决了我的问题

@Bean
    SkipPatternSampler skipPatternSampler() {
        return new SkipPatternSampler(Pattern.compile("/actuator/health/(liveness|readiness)"));
    }

相关问题