hotfix: fix broken images in chronograf flux dashboards guide

pull/1954/head
Scott Anderson 2020-12-07 14:45:04 -07:00
parent fb0f0c0cfd
commit a83586f2f0
7 changed files with 18 additions and 18 deletions

View File

@ -78,7 +78,7 @@ from(bucket:"telegraf/autogen")
As data is gathered into windows of time, each window is output as its own table.
When visualized, each table is assigned a unique color.
![Windowed data tables](/img/flux/flux-windowed-data.png)
![Windowed data tables](/img/flux/windowed-data.png)
## Aggregate windowed data
Flux aggregate functions take the `_value`s in each table and aggregate them in some way.
@ -99,7 +99,7 @@ from(bucket:"telegraf/autogen")
As rows in each window are aggregated, their output table contains only a single row with the aggregate value.
Windowed tables are all still separate and, when visualized, will appear as single, unconnected points.
![Windowed aggregate data](/img/flux/flux-windowed-aggregates.png)
![Windowed aggregate data](/img/flux/windowed-aggregates.png)
## Add times to your aggregates
As values are aggregated, the resulting tables do not have a `_time` column because
@ -145,7 +145,7 @@ from(bucket:"telegraf/autogen")
Once ungrouped and combined into a single table, the aggregate data points will appear connected in your visualization.
![Unwindowed aggregate data](/img/flux/flux-windowed-aggregates-ungrouped.png)
![Unwindowed aggregate data](/img/flux/windowed-aggregates-ungrouped.png)
## Helper functions
This may seem like a lot of coding just to build a query that aggregates data, however going through the

View File

@ -30,7 +30,7 @@ To use Flux in a dashboard cell, either create a new cell or edit an existing ce
by clicking the **pencil** icon in the top right corner of the cell.
To the right of the **Source dropdown** above the graph preview, select **Flux** as the source type.
![Flux in Chronograf dashboard cells](/img/flux/flux-dashboard-cell.png)
{{< img-hd src="/img/influxdb/1-7-flux-dashboard-cell.png" alt="Flux in Chronograf dashboard cells" />}}
> The Flux source type is only available if your data source has
> [Flux enabled](/influxdb/v1.7/flux/installation).
@ -41,7 +41,7 @@ This will provide **Schema**, **Script**, and **Functions** panes.
The Schema pane allows you to explore your data and add filters for specific
measurements, fields, and tags to your Flux script.
<img src="/img/flux/flux-dashboard-add-filter.png" style="max-width:316px" title="Add a filter from the Schema panel">
{{< img-hd src="/img/influxdb/1-7-flux-dashboard-add-filter.png" title="Add a filter from the Schema panel" />}}
### Script pane
The Script pane is where you write your Flux script.
@ -71,7 +71,7 @@ It can be helpful to view the actual data in order to see how it is being shaped
The **View Raw Data** toggle above the data visualization switches between graphed
data and raw data shown in table form.
![View raw data](/img/flux/flux-dashboard-view-raw.png)
{{< img-hd src="/img/influxdb/1-7-flux-dashboard-view-raw.png" alt="View raw data" />}}
_The **View Raw Data** toggle is only available when using Flux._
@ -143,9 +143,9 @@ dataSet
```
### Custom template variables
<dt>
Chronograf does not yet support the use of custom template variables in Flux queries.
</dt>
{{% warn %}}
Chronograf does not support the use of custom template variables in Flux queries.
{{% /warn %}}
## Using Flux and InfluxQL
Within individual dashboard cells, the use of Flux and InfluxQL is mutually exclusive.

View File

@ -78,7 +78,7 @@ from(bucket:"telegraf/autogen")
As data is gathered into windows of time, each window is output as its own table.
When visualized, each table is assigned a unique color.
![Windowed data tables](/img/flux/flux-windowed-data.png)
![Windowed data tables](/img/flux/windowed-data.png)
## Aggregate windowed data
Flux aggregate functions take the `_value`s in each table and aggregate them in some way.
@ -99,7 +99,7 @@ from(bucket:"telegraf/autogen")
As rows in each window are aggregated, their output table contains only a single row with the aggregate value.
Windowed tables are all still separate and, when visualized, will appear as single, unconnected points.
![Windowed aggregate data](/img/flux/flux-windowed-aggregates.png)
![Windowed aggregate data](/img/flux/windowed-aggregates.png)
## Add times to your aggregates
As values are aggregated, the resulting tables do not have a `_time` column because
@ -145,7 +145,7 @@ from(bucket:"telegraf/autogen")
Once ungrouped and combined into a single table, the aggregate data points will appear connected in your visualization.
![Unwindowed aggregate data](/img/flux/flux-windowed-aggregates-ungrouped.png)
![Unwindowed aggregate data](/img/flux/windowed-aggregates-ungrouped.png)
## Helper functions
This may seem like a lot of coding just to build a query that aggregates data, however going through the

View File

@ -30,7 +30,7 @@ To use Flux in a dashboard cell, either create a new cell or edit an existing ce
by clicking the **pencil** icon in the top right corner of the cell.
To the right of the **Source dropdown** above the graph preview, select **Flux** as the source type.
![Flux in Chronograf dashboard cells](/img/flux/flux-dashboard-cell.png)
{{< img-hd src="/img/influxdb/1-7-flux-dashboard-cell.png" alt="Flux in Chronograf dashboard cells" />}}
> The Flux source type is only available if your data source has
> [Flux enabled](/influxdb/v1.8/flux/installation).
@ -41,7 +41,7 @@ This will provide **Schema**, **Script**, and **Functions** panes.
The Schema pane allows you to explore your data and add filters for specific
measurements, fields, and tags to your Flux script.
<img src="/img/flux/flux-dashboard-add-filter.png" style="max-width:316px" title="Add a filter from the Schema panel">
{{< img-hd src="/img/influxdb/1-7-flux-dashboard-add-filter.png" title="Add a filter from the Schema panel" />}}
### Script pane
The Script pane is where you write your Flux script.
@ -71,7 +71,7 @@ It can be helpful to view the actual data in order to see how it is being shaped
The **View Raw Data** toggle above the data visualization switches between graphed
data and raw data shown in table form.
![View raw data](/img/flux/flux-dashboard-view-raw.png)
{{< img-hd src="/img/influxdb/1-7-flux-dashboard-view-raw.png" alt="View raw data" />}}
_The **View Raw Data** toggle is only available when using Flux._
@ -143,9 +143,9 @@ dataSet
```
### Custom template variables
<dt>
Chronograf does not yet support the use of custom template variables in Flux queries.
</dt>
<% warn %>
Chronograf does not support the use of custom template variables in Flux queries.
<% /warn %>
## Using Flux and InfluxQL
Within individual dashboard cells, the use of Flux and InfluxQL is mutually exclusive.

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB