Grafana sum of requests

Hi, does anyone know how i can sum these up?

It’s hard to say without seeing the query. Normally you want to make the “window” bigger:

increase(whatever_metric[15m])

This will show the increase over the last 15 minutes. You can change that interval though:

increase(whatever_metric[24h])

That shows the increase over the last 24h.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.