From e0d5295055e220dac0ea3cdc665a4f6c10d82811 Mon Sep 17 00:00:00 2001 From: danielclow <106956386+danielclow@users.noreply.github.com> Date: Wed, 29 Mar 2023 18:24:56 +0800 Subject: [PATCH] docs: fix redirecting links --- docs/en/09-data-out/05-prometheus.md | 2 +- docs/en/10-programming/03-insert.md | 2 +- docs/en/10-programming/04-query.md | 4 ++-- docs/en/11-visual/01-grafana.md | 2 +- docs/en/19-tools/01-cli.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en/09-data-out/05-prometheus.md b/docs/en/09-data-out/05-prometheus.md index bd71755f9e..91d803ceb1 100644 --- a/docs/en/09-data-out/05-prometheus.md +++ b/docs/en/09-data-out/05-prometheus.md @@ -10,7 +10,7 @@ Prometheus provides `remote_read` interface to leverage other database products ## Install Prometheus -Please refer to [Install Prometheus](https://docs.tdengine.com/cloud/data-in/prometheus#install-prometheus). +Please refer to [Install Prometheus](https://docs.tdengine.com/cloud/data-in/prometheus/#install-prometheus). ## Configure Prometheus diff --git a/docs/en/10-programming/03-insert.md b/docs/en/10-programming/03-insert.md index 86f57102b1..471ab9ed93 100644 --- a/docs/en/10-programming/03-insert.md +++ b/docs/en/10-programming/03-insert.md @@ -36,7 +36,7 @@ Data can be inserted into multiple tables in the same SQL statement. The example INSERT INTO test.d101 VALUES (1538548685000, 10.3, 219, 0.31) (1538548695000, 12.6, 218, 0.33) test.d102 VALUES (1538548696800, 12.3, 221, 0.31); ``` -For more details about `INSERT` please refer to [INSERT](https://docs.tdengine.com/cloud/taos-sql/insert). +For more details about `INSERT` please refer to [INSERT](https://docs.tdengine.com/cloud/taos-sql/insert/). ## Connector Examples diff --git a/docs/en/10-programming/04-query.md b/docs/en/10-programming/04-query.md index a59a89fe34..5183b74390 100644 --- a/docs/en/10-programming/04-query.md +++ b/docs/en/10-programming/04-query.md @@ -36,7 +36,7 @@ Query OK, 2 row(s) in set (0.001100s) To meet the requirements of varied use cases, some special functions have been added in TDengine. Some examples are `twa` (Time Weighted Average), `spread` (The difference between the maximum and the minimum), and `last_row` (the last row). Furthermore, continuous query is also supported in TDengine. -For detailed query syntax please refer to [Select](https://docs.tdengine.com/cloud/taos-sql/select). +For detailed query syntax please refer to [Select](https://docs.tdengine.com/cloud/taos-sql/select/). ## Aggregation among Tables @@ -82,7 +82,7 @@ SELECT count(*), max(current) FROM test.meters where groupId = 2 and ts > now - Query OK, 1 row(s) in set (0.002136s) ``` -Join queries are only allowed between subtables of the same STable. In [Select](https://docs.tdengine.com/cloud/taos-sql/select), all query operations are marked as to whether they support STables or not. +Join queries are only allowed between subtables of the same STable. In [Select](https://docs.tdengine.com/cloud/taos-sql/select/), all query operations are marked as to whether they support STables or not. ## Down Sampling and Interpolation diff --git a/docs/en/11-visual/01-grafana.md b/docs/en/11-visual/01-grafana.md index e1f4870f0d..923e3d2d56 100644 --- a/docs/en/11-visual/01-grafana.md +++ b/docs/en/11-visual/01-grafana.md @@ -54,4 +54,4 @@ Users can log in to the Grafana server (initial username/password: admin/admin) Please add new dashboard or import exist dashboard to illustrate the data you store in the TDengine. -And refer to the [documentation](https://docs.tdengine.com/third-party/grafana#create-dashboard) for more details. +And refer to the [documentation](https://docs.tdengine.com/third-party/grafana/#create-dashboard) for more details. diff --git a/docs/en/19-tools/01-cli.md b/docs/en/19-tools/01-cli.md index 0cda281981..8443854e83 100644 --- a/docs/en/19-tools/01-cli.md +++ b/docs/en/19-tools/01-cli.md @@ -124,4 +124,4 @@ Successfully connect to cloud.tdengine.com:8085 in restful mode taos> ``` -After entering the TDengine CLI, you can execute various SQL commands, including inserts, queries, or administrative commands. Please see the [official document](https://docs.tdengine.com/reference/taos-shell#execute-sql-script-file) for more details. +After entering the TDengine CLI, you can execute various SQL commands, including inserts, queries, or administrative commands. Please see the [official document](https://docs.tdengine.com/reference/taos-shell/#execute-sql-script-file) for more details. -- GitLab