From f3df3843cf530cd54726baba3a4dd20330666825 Mon Sep 17 00:00:00 2001 From: Jacob Marble Date: Fri, 25 Sep 2020 10:39:42 -0700 Subject: [PATCH] fix(flux/profiler): example code fixed Copy-pasted the example into the InfluxDB UI and it didn't work. Looks like it was just a typo. --- content/influxdb/v2.0/reference/flux/stdlib/profiler/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/influxdb/v2.0/reference/flux/stdlib/profiler/_index.md b/content/influxdb/v2.0/reference/flux/stdlib/profiler/_index.md index 3215c39df..9d276a981 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/profiler/_index.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/profiler/_index.md @@ -63,7 +63,7 @@ Use the query profiler to output statistics about query execution. ```js import "profiler" -option profiler.enabledProfiles["query"] +option profiler.enabledProfilers = ["query"] // ... Query to profile ```