minor updates to flux guides

pull/22/head
Scott Anderson 2019-01-22 10:20:10 -07:00
parent 2c0f6eeca3
commit da141ac889
3 changed files with 18 additions and 6 deletions

View File

@ -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.

View File

@ -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
---

View File

@ -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)