From c245b0d99471a7cc6fcc8bee27c4e8f298d18bb3 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Sun, 15 May 2022 17:19:57 +0800 Subject: [PATCH] docs: translate prometheus section (#12507) * docs: 3rd parties doc in English [TD-15558] * fix link to broder * docs: third parties doc in English [TD-15558] * docs: 3rd parties doc in English translate reference doc * fix img link * fix img links * fix build issues * translate prometheus section --- docs-en/14-reference/_prometheus.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs-en/14-reference/_prometheus.mdx b/docs-en/14-reference/_prometheus.mdx index 99fd95749c..0059fe53fc 100644 --- a/docs-en/14-reference/_prometheus.mdx +++ b/docs-en/14-reference/_prometheus.mdx @@ -1,18 +1,18 @@ -配置 Prometheus 是通过编辑 Prometheus 配置文件 prometheus.yml (默认位置 /etc/prometheus/prometheus.yml)完成的。 +Configuring Prometheus is done by editing the Prometheus configuration file prometheus.yml (default location /etc/prometheus/prometheus.yml). -### 配置第三方数据库地址 +### Configuring third-party database addresses -将其中的 `remote_read url` 和 `remote_write url` 指向运行 taosAdapter 服务的服务器域名或 IP 地址,REST 服务端口(taosAdapter 默认使用 6041),以及希望写入 TDengine 的数据库名称,并确保相应的 URL 形式如下: +Point the `remote_read url` and `remote_write url` to the domain name or IP address of the server running the taosAdapter service, the REST service port (taosAdapter uses 6041 by default), and the name of the database you want to write to TDengine, and ensure that the corresponding URL form as follows. - remote_read url : `http://:/prometheus/v1/remote_read/` - remote_write url : `http://:/prometheus/v1/remote_write/` -### 配置 Basic 验证 +### Configure Basic authentication -- username: -- password: +- username: +- password: -### prometheus.yml 文件中 remote_write 和 remote_read 相关部分配置示例 +### Example configuration of remote_write and remote_read related sections in prometheus.yml file ```yaml remote_write: -- GitLab