I have a testDB (InfluxDB v1.0.0 on Ubuntu 16.04) with different measurements. 
I want to count all points between two timestamps, so the influx support team 
suggested this query:

SELECT COUNT(*) FROM /.*/ WHERE time > now() - 4d AND time < now()

When I run this on my DB, i only get the count from 1 measurement:

{"results":[{"series":[{"name":"valve_state","columns":["time","count_value"],"values":[["2016-10-29T23:44:44.327400928Z",1404]]}]}]}

However. I have plenty more data between those dates. If i just replace the 
wildcard with an actual measurement name, i get:

{"results":[{"series":[{"name":"fill_level","columns":["time","count_value"],"values":[["2016-10-29T23:46:19.746417968Z",1728000]]}]}]}

Any ideas on what is wrong here?

-- 
Remember to include the version number!
--- 
You received this message because you are subscribed to the Google Groups 
"InfluxData" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/influxdb.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/influxdb/abfbb2c9-7b28-4dda-93c0-5f111c03d3aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to