adjusted order of items in the reference section
parent
e92421e9a4
commit
7c856490f1
|
|
@ -2,14 +2,13 @@
|
|||
title: Annotated CSV syntax
|
||||
description: >
|
||||
Annotated CSV format is used to encode HTTP responses and results returned to the Flux `csv.from()` function.
|
||||
|
||||
weight: 6
|
||||
menu:
|
||||
v2_0_ref:
|
||||
name: Annotated CSV
|
||||
weight: 2
|
||||
---
|
||||
|
||||
Annotated CSV (comma-separated values) format is used to encode HTTP responses and results returned to the Flux [`csv.from()` function](https://v2.docs.influxdata.com/v2.0/reference/flux/functions/csv/from/).
|
||||
Annotated CSV (comma-separated values) format is used to encode HTTP responses and results returned to the Flux [`csv.from()` function](https://v2.docs.influxdata.com/v2.0/reference/flux/functions/csv/from/).
|
||||
|
||||
CSV tables must be encoded in UTF-8 and Unicode Normal Form C as defined in [UAX15](http://www.unicode.org/reports/tr15/). Line endings must be CRLF (Carriage Return Line Feed) as defined by the `text/csv` MIME type in [RFC 4180](https://tools.ietf.org/html/rfc4180).
|
||||
|
||||
|
|
@ -30,7 +29,7 @@ Flux supports encodings listed below.
|
|||
A table may have the following rows and columns.
|
||||
|
||||
#### Rows
|
||||
- **Annotation rows**: describe column properties.
|
||||
- **Annotation rows**: describe column properties.
|
||||
|
||||
- **Header row**: defines column labels (one header row per table).
|
||||
|
||||
|
|
@ -74,11 +73,11 @@ In addition to the data columns, a table may include the following columns:
|
|||
|
||||
### Multiple tables and results
|
||||
If a file or data stream contains multiple tables or results, the following requirements must be met:
|
||||
|
||||
- A table column indicates which table a row belongs to.
|
||||
|
||||
- A table column indicates which table a row belongs to.
|
||||
- All rows in a table are contiguous.
|
||||
- An empty row delimits a new table boundary in the following cases:
|
||||
- Between tables in the same result that do not share a common table schema.
|
||||
- Between tables in the same result that do not share a common table schema.
|
||||
- Between concatenated CSV files.
|
||||
- Each new table boundary starts with new annotation and header rows.
|
||||
|
||||
|
|
@ -214,12 +213,12 @@ If a table has no rows, the `default` annotation provides the group key values.
|
|||
| duration | duration | a length of time represented as an unsigned 64-bit integer number of nanoseconds |
|
||||
|
||||
## Errors
|
||||
If an error occurs during execution, a table returns with:
|
||||
If an error occurs during execution, a table returns with:
|
||||
|
||||
- An error column that contains an error message.
|
||||
- A reference column with a unique reference code to identify more information about the error.
|
||||
- A second row with error properties.
|
||||
|
||||
- A second row with error properties.
|
||||
|
||||
If an error occurs:
|
||||
|
||||
- Before results materialize, the HTTP status code indicates an error. Error details are encoded in the csv table.
|
||||
|
|
@ -243,4 +242,4 @@ Encoding for an error that occurs after a valid table has been encoded:
|
|||
```js
|
||||
#datatype,string,long
|
||||
,error,reference,query terminated: reached maximum allowed memory limits,576
|
||||
```
|
||||
```
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ title: InfluxDB client libraries
|
|||
description: >
|
||||
InfluxDB client libraries are language-specific tools that integrate with the InfluxDB v2 API.
|
||||
View the list of available client libraries.
|
||||
weight: 6
|
||||
weight: 3
|
||||
menu:
|
||||
v2_0_ref:
|
||||
name: Client libraries
|
||||
|
|
|
|||
|
|
@ -2,14 +2,14 @@
|
|||
title: Glossary
|
||||
description: >
|
||||
Terms related to InfluxData products and platforms.
|
||||
weight: 6
|
||||
weight: 7
|
||||
menu:
|
||||
v2_0_ref:
|
||||
name: Glossary
|
||||
v2.0/tags: [glossary]
|
||||
---
|
||||
|
||||
[A](#a) | [B](#b) | [C](#c) | [D](#d) | [E](#e) | [F](#f) |[G](#g) | [H](#h) | [I](#i) | [J](#j) | [K](#k) | [L](#l) | [M](#m) | [N](#n) | [O](#o) | [P](#p) | [Q](#q) | [R](#r) | [S](#s) | [T](#t) | [U](#u) | [V](#v) | [W](#w) | [X](#x) | [Y](#y) | [Z](#z)
|
||||
[A](#a) | [B](#b) | [C](#c) | [D](#d) | [E](#e) | [F](#f) | [G](#g) | [H](#h) | [I](#i) | [J](#j) | [K](#k) | [L](#l) | [M](#m) | [N](#n) | [O](#o) | [P](#p) | [Q](#q) | [R](#r) | [S](#s) | [T](#t) | [U](#u) | [V](#v) | [W](#w) | [X](#x) | [Y](#y) | [Z](#z)
|
||||
|
||||
## A
|
||||
|
||||
|
|
@ -44,7 +44,7 @@ InfluxData typically recommends batch sizes of 5,000-10,000 points. In some use
|
|||
|
||||
Related entries: [line protocol](/v2.0/reference/line-protocol/), [point](#point)
|
||||
|
||||
### batch size
|
||||
### batch size
|
||||
|
||||
The number of lines or individual data points in a line protocol batch. The Telegraf agent sends metrics to output plugins in batches rather than individually.
|
||||
Batch size controls the size of each write batch that Telegraf sends to the output plugins.
|
||||
|
|
@ -239,11 +239,11 @@ Related entries: [flush interval](#flush-interval), [output plugin](#output-plug
|
|||
|
||||
### Flux
|
||||
|
||||
A lightweight scripting language for querying databases (like InfluxDB) and working with data.
|
||||
A lightweight scripting language for querying databases (like InfluxDB) and working with data.
|
||||
|
||||
### function
|
||||
|
||||
Flux functions aggregate, select, and transform time series data. For a complete list of Flux functions, see [Flux functions](/v2.0/reference/flux/functions/all-functions/).
|
||||
Flux functions aggregate, select, and transform time series data. For a complete list of Flux functions, see [Flux functions](/v2.0/reference/flux/functions/all-functions/).
|
||||
<!--Or opt to use Flux functions' predecessor, InfluxQL functions. See [InfluxQL functions](/influxdb/v1.7/query_language/functions/) for a complete list. -->
|
||||
|
||||
Related entries: [aggregation](#aggregation), [selector](#selector), [transformation](#transformation)
|
||||
|
|
@ -439,7 +439,7 @@ Related entries: [aggregator plugin](/telegraf/v1.10/concepts/glossary/#aggregat
|
|||
|
||||
### parameter
|
||||
A key-value pair used to pass information to functions.
|
||||
<!--
|
||||
<!--
|
||||
### pipe
|
||||
-->
|
||||
### pipe-forward operator
|
||||
|
|
@ -787,8 +787,8 @@ If you are transitioning from the Enterprise Web Console to Chronograf and helpf
|
|||
### windowing
|
||||
The process of partitioning data based on equal windows of time.
|
||||
|
||||
<!--
|
||||
## X
|
||||
<!--
|
||||
## X
|
||||
|
||||
|
||||
## Y
|
||||
|
|
|
|||
Loading…
Reference in New Issue