0
votes

I have Grafana 3.0 with InfluxDB and Graphite datasources.

I have a field with size in GigaByte and I need to know the sum of this field in the last 1h.

I tried summarize() and hitcount() on graphite, but is not the correct result.

How can I achieve this??

2

2 Answers

0
votes

Solved. It was hitcount, but I have some problem with graphite data and the result is not tthe correct. Now I resolved.

0
votes

For InfluxDB the query would be SELECT count(GigaByte) FROM yourmeasurement where time > now() - 1h