我有一个用例,我想每小时设置一次来自grafana的警报。在此每小时警报中,我想获取最近1小时内每个API的请求计数,并收集它们并与警报一起发送。我尝试了使用的不同组合
sum(increase(http_server_requests_seconds_count[1h]))
increase(http_server_requests_seconds_count[1h])
sum_over_time(http_server_requests_seconds_count[1h])
count_over_time(http_server_requests_seconds_count[1h])
虽然我正在验证请求计数中的结果,但未累加。有什么建议?预先感谢。