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
Execute the following query to see things look ok:
> select "value" from "measurement" where time > '2015-01-01T00:00:00Z'
2015-01-01T00:00:01Z 0
2015-01-01T00:00:31Z 15
2015-01-01T00:02:01Z 0
Execute the following query to see that regular group by of mean looks ok
> select mean("value") from "measurement" where time > '2015-01-01T00:00:00Z' and time < '2015-01-01T00:03:00Z' group by time(30s) fill(previous)
2015-01-01T00:00:00Z 0
2015-01-01T00:00:30Z 15
2015-01-01T00:01:00Z 15
2015-01-01T00:01:30Z 15
2015-01-01T00:02:00Z 0
2015-01-01T00:02:30Z 0
Multiply the mean by 4. We observe that on data points where the fill(previous) is being applied the coeficient for multiplication is increasing to 4^2.
> select 4*mean("value") from "measurement" where time > '2015-01-01T00:00:00Z' and time < '2015-01-01T00:03:00Z' group by time(30s) fill(previous)
2015-01-01T00:00:00Z 0
2015-01-01T00:00:30Z 60
2015-01-01T00:01:00Z 240 <- this value should also be 60, no?
2015-01-01T00:01:30Z 240 <- ditto.
2015-01-01T00:02:00Z 0
2015-01-01T00:02:30Z 0
The text was updated successfully, but these errors were encountered:
Bug report
influxdb 1.0.0-beta2
OS: windows 10
Steps to reproduce:
The text was updated successfully, but these errors were encountered: