Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b802112
updated 2.0 reference
sanderson Oct 28, 2019
0128641
typo fixes in flux language spec docs
sanderson Jan 22, 2020
d7ba1a3
added flux monitoring state guides, removed duplicate mqtt docs
sanderson Mar 6, 2020
ed356a2
added changes from flux 0.51
sanderson Mar 7, 2020
770a1ed
added changes from flux 0.53
sanderson Mar 7, 2020
9797e8c
added changes for flux 0.55
sanderson Mar 9, 2020
77e3203
added changes for flux 0.57
sanderson Mar 9, 2020
afad044
added changes for flux 0.58
sanderson Mar 9, 2020
544d46d
added updates for flux 0.60
sanderson Mar 9, 2020
fe0c9c8
added flux experimental shortcode
sanderson Mar 9, 2020
74027a4
added changes for flux 0.61
sanderson Mar 9, 2020
17e28b3
added updates for flux 0.63
sanderson Mar 9, 2020
2639ec7
added onEmpty to filter and updated count doc
sanderson Mar 9, 2020
73365c8
added clarification between join and union
sanderson Mar 9, 2020
aefd9c6
added flux optimizations guide
sanderson Mar 9, 2020
5638457
added guide for extracting scalar values
sanderson Mar 9, 2020
cdd5443
added 2.0 cloud and oss options to flux getting started
sanderson Mar 11, 2020
57065ce
ported v1.databases function from flux 0.50
sanderson Mar 24, 2020
2b7938c
ported over misc flux changes for flux 0.64
sanderson Mar 24, 2020
f458a5b
added geo package updates and guides
sanderson Mar 24, 2020
5240620
added the experimental csv package to flux docs
sanderson Mar 24, 2020
a5f99a4
added warning about keeping empty tables with filtering
sanderson Mar 24, 2020
7956ff5
updated query guides
sanderson Mar 24, 2020
f88d0f1
fixed broken links in flux-0.x
sanderson Mar 24, 2020
b8266f2
cut the flux 0.64 version and directory
sanderson Mar 24, 2020
a0062ec
regenerated css to resolve merge conflicts
sanderson Mar 24, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ deploy
.*.swp
node_modules
*.log
resources
chronograf-v1.db
Binary file removed chronograf-v1.db
Binary file not shown.
2 changes: 1 addition & 1 deletion content/flux/v0.50/stdlib/experimental/group.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Appends columns defined in the [`columns` parameter](#columns) to all existing

###### Include the value column in each groups' group key
```js
from(bucket: "example-bucket")
from(bucket: "telegraf/autogen")
|> range(start: -1m)
|> group(columns: ["_value"], mode: "extend")
```
Expand Down
2 changes: 1 addition & 1 deletion content/flux/v0.50/stdlib/experimental/mqtt/to.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ _**Data type:** Array of strings_
```js
import "experimental/mqtt"

from(bucket: "example-bucket")
from(bucket: "telegraf/autogen")
|> range(start: -5m)
|> filter(fn: (r) => r._measurement == "airSensor")
|> mqtt.to(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ import "experimental/prometheus"
prometheus.scrape(url: "https://example-url.com/metrics")
|> to(
org: "example-org",
bucket: "example-bucket"
bucket: "telegraf/autogen"
)
```
2 changes: 1 addition & 1 deletion content/flux/v0.50/stdlib/experimental/to.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ _**Data type:** String_
```js
import "experimental"

from(bucket: "example-bucket")
from(bucket: "telegraf/autogen")
|> range(start: -1h)
|> pivot(
rowKey:["_time"],
Expand Down
28 changes: 28 additions & 0 deletions content/flux/v0.64/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Flux v0.64 documentation
description:
menu:
flux:
name: v0.64
identifier: flux_0_64
weight: 95
---

## [Introduction to Flux](/flux/v0.64/introduction)
A quick introduction to Flux and its design principles.

## [Enable Flux](/flux/v0.64/introduction/installation)
Flux is packaged with InfluxDB v1.7+ and does not require any additional installation,
however it does need to be enabled.

## [Get started with Flux](/flux/v0.64/introduction/getting-started)
The best way to learn Flux is to walk through writing a flux script. This guide does just that.

## [Flux guides](/flux/v0.64/guides)
Helpful guides that walk through both common and complex tasks and use cases for Flux.

## [Flux standard library](/flux/v0.64/stdlib)
The Flux standard library includes packages and functions that retrieve, transform, process, and output data.

## [Flux language reference](/flux/v0.64/language)
The specification for the Flux language and query execution.
26 changes: 26 additions & 0 deletions content/flux/v0.64/about_the_project/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: About the project

menu:
flux_0_64:
weight: 1
---

## [Release notes](/flux/v0.64/about_the_project/releasenotes-changelog)

<!-- ## [Contributing to Flux](https://github.com/influxdata/flux/blob/master/CONTRIBUTING.md) -->

## [CLA](https://influxdata.com/community/cla/)

## [Licenses](https://github.com/influxdata/influxdb/blob/master/LICENSE)

## Third Party Software
InfluxData products contain third party software, which means the copyrighted, patented, or otherwise legally protected
software of third parties that is incorporated in InfluxData products.

Third party suppliers make no representation nor warranty with respect to such third party software or any portion thereof.
Third party suppliers assume no liability for any claim that might arise with respect to such third party software, nor for a
customer’s use of or inability to use the third party software.

The [list of third party software components, including references to associated licenses and other materials](https://github.com/influxdata/influxdb/blob/master/DEPENDENCIES.md),
is maintained on a version by version basis.
10 changes: 10 additions & 0 deletions content/flux/v0.64/about_the_project/cla.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: CLA

menu:
flux_0_64:
name: CLA
weight: 30
parent: About the project
url: https://influxdb.com/community/cla.html
---
10 changes: 10 additions & 0 deletions content/flux/v0.64/about_the_project/license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: License

menu:
flux_0_64:
name: License
weight: 40
parent: About the project
url: https://github.com/influxdata/influxdb/blob/master/LICENSE
---
Loading