I want to know how many events we send to InfluxDB for a given period. If I use the following query SELECT COUNT(value) FROM /./ WHERE time > now() - 1h GROUP BY time(10m), I get that grouped for each metric but I want the total for all metrics.
If I use SELECT COUNT(*) FROM /./ WHERE time > now() - 1h GROUP BY time(10m), I get an error:
Server returned error: expected field argument in count()
SHOW FIELD KEYS? - beckettseanvaluefor each metric but when usingSELECT COUNT(value)I get the result for each metric rather than the total count of metrics values for the time period. - jtblin