From adbd6d6c4eef900d2fe1722f52d449f2a42f423d Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Mon, 6 Dec 2021 11:56:24 -0700 Subject: [PATCH] hotfix: fixed typo in chronograf flux example, closes influxdata/DAR#258 --- content/chronograf/v1.9/guides/dashboard-template-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/chronograf/v1.9/guides/dashboard-template-variables.md b/content/chronograf/v1.9/guides/dashboard-template-variables.md index 68eb43b91..64638f670 100644 --- a/content/chronograf/v1.9/guides/dashboard-template-variables.md +++ b/content/chronograf/v1.9/guides/dashboard-template-variables.md @@ -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) ```