In the result output in the console, I can see a total of 1180 requests in a small test. In Grafana, the number doesn’t match up. The value here is 631.
My query:
SELECT
count("value")
FROM "autogen"."http_reqs"
WHERE
time >= now() - 1h
GROUP BY
time(30s) fill(null)
What makes the difference in the two numbers, and which are correct?