Spring Boot 2.x Metrics类

时间:2017-10-14 21:39:14

标签: spring-boot metrics spring-boot-actuator

我已经开始使用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

他们是否被转移到其他地方?

1 个答案:

答案 0 :(得分: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 ......

  

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