Spring Boot 2.x Metrics类

问题描述 投票:3回答:1

我已经开始使用spring boot 2.0.0-Snapshot,我发现所有与Metric相关的类和接口都不存在?

示例:jar spring-boot-actuator-2.0.0.BUILD-SNAPSHOT.jar没有包

org.springframework.boot.actuate.metrics.writer at all

他们搬到了别的地方吗?

spring-boot metrics spring-boot-actuator
1个回答
4
投票

在Spring Boot 2中,先前的度量标准实现已被与Micrometer的集成所取代。从发行说明:

Spring Boot自己的指标已被替换为Micrometer和维度指标的支持,包括自动配置。您可以在其用户手册和Spring Boot的reference guide中了解更多有关Micrometer的信息

我找不到任何从1.x Spring Boot Metrics迁移到2.x Spring Boot Metrics的指南,但这个更改是最近的,所以我怀疑任何这样的文档都是TODO。在此期间,你也许可以挖掘Pull Request或跟随Spring Boot 2 docs ......

千分尺为每个支持的监控系统提供单独的模块。根据这些模块中的一个(或多个),您可以在Spring Boot应用程序中开始使用Micrometer。要了解有关Micrometer功能的更多信息,请参阅其reference documentation

© www.soinside.com 2019 - 2024. All rights reserved.