You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select derivative(count) from "jvm.gc" group by instanceId, name
works fine, while:
select derivative(count) from "jvm.gc" where time > now() - 3600s group by instanceId, name
returns error:
ERR: error parsing query: aggregate function required inside the call to derivative
I don't think the second query should require aggregate function call, because there is no grouping by time. Query just limits the amount of rows returned, but does not change the first query in any other way.
The text was updated successfully, but these errors were encountered:
version: 0.9.4.1
rpm: https://s3.amazonaws.com/influxdb/influxdb_0.9.4.1_amd64.deb
system: amazon linux 3.14.35-28.38.amzn1.x86_64
Running query:
works fine, while:
returns error:
I don't think the second query should require aggregate function call, because there is no grouping by time. Query just limits the amount of rows returned, but does not change the first query in any other way.
The text was updated successfully, but these errors were encountered: