hotfix: fixed typo in chronograf flux example, closes influxdata/DAR#258

pull/3462/head
Scott Anderson 2021-12-06 11:56:24 -07:00
parent 75b156f454
commit adbd6d6c4e
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ Use dot or bracket notation to reference the variable key inside of the `v` reco
```js
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStart)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r._field == v["Field key"])
|> aggregateWindow(every: v.windowPeriod, fn: v.aggregateFunction)
```