fix: replace incorrect page URLs (#2490).

pull/2506/head
Jason Stirnaman 2021-05-07 17:32:06 -05:00
commit 4190105a69
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
---
title: Write CSV data to InfluxDB
description: >
Write CSV data with the [`influx write` command](#influx-write-command) or Flux.
Write CSV data with the [`influx write` command](/influxdb/cloud/reference/cli/influx/write/) or Flux.
Include annotations with the CSV data to determine how the data translates into
[line protocol](/influxdb/v2.0/reference/syntax/line-protocol/).
menu:
@ -23,7 +23,7 @@ Write CSV data with the following methods:
### Flux
Use the [csv.from()](/influxdb/v2.0/reference/flux/stdlib/csv/from/) and [to()](/influxdb/v2.0/reference/flux/stdlib/built-in/outputs/to/) Flux functions to write an annotated CSV to the bucket of your choice.
{{< youtube wPKZ9i0DulQ >}}
The experimental [csv.from()](/influxdb/v2.0/reference/flux/stdlib/csv/from/) function lets you write CSV from a URL.
@ -421,7 +421,7 @@ in the `double`, `long`, and `unsignedLong` datatype annotations.
{{% note %}}
If your **numeric format separators** include a comma (`,`), wrap the column annotation in double
quotes (`""`) to prevent the comma from being parsed as a column separator or delimiter.
You can also [define a custom column separator](##################).
You can also [define a custom column separator](/influxdb/v2.0/reference/syntax/annotated-csv/extended/#define-custom-column-separator).
{{% /note %}}
{{< tabs-wrapper >}}