Docu: fix broken link (#5410)

Fix broken link

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
jstirnaman/issue5397-managementapi
Andreas Deininger 2024-04-09 00:07:49 +02:00 committed by GitHub
parent 4e75e9a906
commit 35ba19d3cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 8 deletions

View File

@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: cimg/node:20.11.1
- image: cimg/node:20.12.1
environment:
S3DEPLOY_VERSION: "2.11.0"
# From https://github.com/bep/s3deploy/releases
@ -49,7 +49,7 @@ jobs:
deploy:
docker:
- image: cimg/go:1.22.1
- image: cimg/go:1.22.2
steps:
- checkout
- restore_cache:

View File

@ -1195,7 +1195,7 @@ the content of the banner.
<!-- Default banner -->
{{< influxdbu >}}
<!-- Predfined course banner -->
<!-- Predefined course banner -->
{{< influxdbu "influxdb-101" >}}
<!-- Custom banner -->

View File

@ -55,7 +55,7 @@ Regardless of your certificate's type, InfluxDB Enterprise supports certificates
a private key file (`.key`) and a signed certificate file (`.crt`) file pair, as well as certificates
that combine the private key file and the signed certificate file into a single bundled file (`.pem`).
In general, each node node should have its own certificate, whether signed or unsiged.
In general, each node node should have its own certificate, whether signed or unsigned.
## Set up HTTPS in an InfluxDB Enterprise cluster

View File

@ -203,7 +203,7 @@ EOF
Replace the following:
- {{% code-placeholder-key %}}`DATABASE_NAME`{{% /code-placeholder-key %}}: the name of the [database](/influxdb/cloud-dedicated/admin/databases/) to write data to
- {{% code-placeholder-key %}}`DATABASE_TOKEN`{{% /code-placeholder-key %}}: a [databse token](/influxdb/cloud-dedicated/admin/tokens/#database-tokens) with _write_ access to the specified database.
- {{% code-placeholder-key %}}`DATABASE_TOKEN`{{% /code-placeholder-key %}}: a [database token](/influxdb/cloud-dedicated/admin/tokens/#database-tokens) with _write_ access to the specified database.
_Store this in a secret store or environment variable to avoid exposing the raw token string._
2. To test the input and processor, enter the following command:

View File

@ -156,7 +156,7 @@ file,title=The\ Lord\ Of\ The\ Rings author="Tolkien",random=2
```
You can find more complicated examples under the folder `testdata`.
You can find more complicated examples under the folder [`testdata`][] in the telegraf repo.
## Types
@ -165,7 +165,7 @@ The following rules are in place for this configuration:
* If a type is explicitly defined, the parser will enforce this type and convert the data to the defined type if possible.
If the type can't be converted then the parser will fail.
* If a type isn't defined, the parser will use the default type defined in the JSON (int, float, string)
* If a type isn't defined, the parser will use the default type defined in the JSON (int, float, string).
The type values you can set:
@ -175,4 +175,5 @@ The type values you can set:
* `float`, string values (with valid numbers) or integers can be converted to a float.
* `bool`, the string values "true" or "false" (regardless of capitalization) or the integer values `0` or `1` can be turned to a bool.
[json]: https://www.json.org/
[json]: https://www.json.org/
[testdata]: https://github.com/influxdata/telegraf/tree/master/plugins/parsers/json_v2/testdata