在旧版本中,当我使用 golang 的 prometheus 客户端时。我增加并使用延迟减少量规指标来计数处理请求,如下所示
func (m *Middleware) ServeHTTP(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
m.gauge.Inc()
defer m.gauge.Dec()
next.ServeHTTP(w, r)
}
我使用 grafana 仪表板查询
sum(service_name_processing[$__interval])
当我使用维多利亚指标时我可以这样做吗: https://pkg.go.dev/github.com/VictoriaMetrics/metrics
非常感谢<3