diff --git a/content/v2.0/query-data/execute-queries.md b/content/v2.0/query-data/execute-queries.md index 9a5af8dcc..43ec6c883 100644 --- a/content/v2.0/query-data/execute-queries.md +++ b/content/v2.0/query-data/execute-queries.md @@ -30,6 +30,8 @@ read-eval-print-loop (REPL) where you can write and execute Flux queries. influx repl --org org-name ``` +_**Note:** `ctrl-d` will close the REPL._ + ## Influx query command You can pass queries to the [`influx query` command](/v2.0/reference/cli/influx/query) as either a file or raw Flux via stdin. diff --git a/content/v2.0/query-data/get-started/transform-data.md b/content/v2.0/query-data/get-started/transform-data.md index c6868022f..0fe5a4654 100644 --- a/content/v2.0/query-data/get-started/transform-data.md +++ b/content/v2.0/query-data/get-started/transform-data.md @@ -3,7 +3,7 @@ title: Transform data with Flux description: Learn the basics of using Flux to transform data queried from InfluxDB. menu: v2_0: - name: Transform your data + name: Transform data parent: Get started with Flux weight: 2 --- diff --git a/content/v2.0/query-data/guides/_index.md b/content/v2.0/query-data/guides/_index.md index 0fbfee811..cb77221e3 100644 --- a/content/v2.0/query-data/guides/_index.md +++ b/content/v2.0/query-data/guides/_index.md @@ -8,18 +8,28 @@ menu: weight: 3 --- -## [How to window and aggregate data with Flux](/v2.0/query-data/guides/window-aggregate) +## Window and aggregate data This guide walks through windowing and aggregating data with Flux and demonstrates how data is shaped in the process. -## [How to group data with Flux](/v2.0/query-data/guides/group-data) +[Window and aggregate data with Flux](/v2.0/query-data/guides/window-aggregate) + +## Group data This guide walks through grouping data in Flux with examples of how data is shaped in the process. -## [How to join data with Flux](/v2.0/query-data/guides/join) +[Group data with Flux](/v2.0/query-data/guides/group-data) + +## Join data This guide walks through joining data with Flux, illustrating how joined data is output and how it can be used. -## [How to sort and limit data with Flux](/v2.0/query-data/guides/sort-limit) +[Join data with Flux](/v2.0/query-data/guides/join) + +## Sort and limit data This guide walks through sorting and limiting data with Flux. -## [Regular expressions in Flux](/v2.0/query-data/guides/regular-expressions) +[Sort and limit data with Flux](/v2.0/query-data/guides/sort-limit) + +## Use regular expressions in Flux This guide walks through using regular expressions in evaluation logic in Flux functions. + +[Use regular expressions in Flux](/v2.0/query-data/guides/regular-expressions)