gpt4 book ai didi

java - 使用千分尺、 Spring Boot 和普罗米修斯测量每秒请求数

转载 作者:行者123 更新时间:2023-12-04 12:00:54 33 4
gpt4 key购买 nike

我正在将微服务更新到 spring boot 2,并将指标从 dropwizard 迁移到 micrometer。我们使用 prometheus 来存储指标并使用 grafana 来显示它们。我想测量每秒对所有 URL 的请求。千分尺文档指出:

Timers are intended for measuring short-duration latencies, and the frequency of such events.

所以计时器似乎是完成这项工作的方式:

                Timer.Sample sample = log ? Timer.start(registry)
//...code which executes request...
List<Tag> tags = Arrays.asList(
Tag.of("status", status),
Tag.of("uri", uri),
Tag.of("method", request.getMethod()));
Timer timer = Timer.builder(TIMER_REST)
.tags(tags)
.publishPercentiles(0.95, 0.99)
.distributionStatisticExpiry(Duration.ofSeconds(30))
.register(registry);
sample.stop(timer);

但它不会产生任何每秒速率,而是我们有类似于以下的指标:
# TYPE timer_rest_seconds summary
timer_rest_seconds{method="GET",status="200",uri="/test",quantile="0.95",} 0.620756992
timer_rest_seconds{method="GET",status="200",uri="/test",quantile="0.99",} 0.620756992
timer_rest_seconds_count{method="GET",status="200",uri="/test",} 7.0
timer_rest_seconds_sum{method="GET",status="200",uri="/test",} 3.656080641
# HELP timer_rest_seconds_max
# TYPE timer_rest_seconds_max gauge
timer_rest_seconds_max{method="GET",status="200",uri="/test",} 0.605290436

解决这个问题的正确方法是什么?每秒速率应该通过普罗米修斯查询计算还是通过 Spring 执行器端点返回?

最佳答案

Prometheus 提供了一种名为 PromQL 的函数式查询语言。 (Prometheus Query Language) 允许用户实时选择和聚合时间序列数据。您可以使用 rate()功能:
以下示例表达式返回过去 5 分钟内测量的 HTTP 请求每秒速率,范围 vector 中的每个时间序列:

rate(http_requests_total{job="api-server"}[5m])

关于java - 使用千分尺、 Spring Boot 和普罗米修斯测量每秒请求数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57534152/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com