1

我正在阅读“带有 Java 微服务的 SRE”(O'reilly)

“USL 预测是 Micrometer 中“派生的”Meter 的一种形式,可以如例 4-39 所示启用。”

示例 4-39。Micrometer 中的通用可伸缩性定律预测配置

UniversalScalabilityLawForecast
.builder(
registry
.find("http.server.requests")
.tag("uri", "/myendpoint")
.tag("status", s -> s.startsWith("2"))
)
.independentVariable(UniversalScalabilityLawForecast.Variable.THROUGHPUT)
// In this case, forecast to up to 1,000 requests/second (throughput)
.maximumForecast(1000)
.register(registry);

千分尺库中的此类“UniversalScalabilityLawForecast”是什么以及在哪里?我找不到它 github 存储库,谷歌搜索,没有运气。

请帮帮我。

4

0 回答 0