gpt4 book ai didi

go - PromQL 查询来绘制传入请求的速率

转载 作者:行者123 更新时间:2023-12-01 20:19:34 25 4
gpt4 key购买 nike

我是普罗米修斯的新手。我正在使用 NewCounterVec 记录传入的 http 请求。我根据在 git hub 上找到的许多其他人的代码使用了它。

假设我的指标是这样定义的(在 go 中)

httpRequests = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "http_requests_total",
Help: "Incoming http requests.",
},
[]string{"path", "status"},
)

path 传入的 url 路径和 status 是 http 响应状态。我的 promQL 查询(绘制图表)是什么

  1. 每分钟传入请求数
  2. 基于 HTTP 状态的失败率代码(状态码 >=400)

我试过 rate(http_requests_total[5m])[30m:1m]基于 this ,但这不能在图表上显示。它抛出错误 Error executing query: invalid expression type "range vector"for range query, must be Scalar or instant Vector

最佳答案

Incoming requests per minute

速率(http_requests_total[5m]) * 60

Rate of failure based on http status code (status code >=400)

rate(http_requests_total{status=~"[45].."}[5m])

然而,这是脆弱的,如果没有 4xx 或 5xx 状态代码,则不会返回任何内容。

关于go - PromQL 查询来绘制传入请求的速率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60272642/

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