未验证 提交 e24c28ca 编写于 作者: sangshuduo's avatar sangshuduo 提交者: GitHub

docs: 3rd parties refine (#11747)

* docs: 3rd parties doc refine

[TD-14841]

* docs: refine 3rd parties doc

[TD-14841]

* docs: correct version number

[TD-14841]

* docs: fix docs format

[TD-14841]

* docs: fix 3rd parties doc format

[TD-14841]

* docs: refine 3rd parties docs

[TD-14841]

* docs: fix docs format

[TD-14841]

* refine 3rd parties docs

* refine 3rd parties docs

* refine 3rd parties docs

* docs: 3rd parties docs refine

* docs: refine 3rd parties docs

* docs: fix 3rd parties docs

* docs: refactor 3rd parties docs

* docs: refine 3rd parties docs

[TD-14841]

* docs: refine 3rd parties doc

[TD-14841]
上级 8aea80f5
......@@ -64,7 +64,7 @@ GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=tdengine-datasource
![img](/img/connections/add_datasource3.jpg)
- Host: TDengine 集群中提供 RESTful 服务 (在 2.4 之前由 taosd 提供, 从 2.4 开始由 taosAdapter 提供)的组件所在服务器的 IP 地址与 TDengine RESTful 服务的端口号(6041),默认 http://localhost:6041。
- Host: TDengine 集群中提供 REST 服务 (在 2.4 之前由 taosd 提供, 从 2.4 开始由 taosAdapter 提供)的组件所在服务器的 IP 地址与 TDengine REST 服务的端口号(6041),默认 http://localhost:6041。
- User:TDengine 用户名。
- Password:TDengine 用户密码。
......
......@@ -14,11 +14,11 @@ Prometheus 提供了 `remote_write` 和 `remote_read` 接口来利用其它数
## 前置条件
要将 Prometheus 数据写入 TDengine, 需要几方面的准备工作。
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正运行, 具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正运行, 具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- Prometheus 已经安装。安装 Prometheus 请参考[官方文档](https://prometheus.io/docs/prometheus/latest/installation/)
## 配置 Prometheus
## 配置步骤
<Prometheus />
## 验证方法
......
......@@ -12,16 +12,22 @@ Telegraf 是一款十分流行的指标采集开源软件。在数据采集和
## 前置条件
要将 Telegraf 数据写入 TDengine, 需要几方面的准备工作。
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正运行, 具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正运行, 具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- Telegraf 已经安装。安装 Telegraf 请参考[官方文档](https://docs.influxdata.com/telegraf/v1.22/install/)
## 配置 Telegraf
## 配置步骤
<Telegraf />
## 验证方法
重启 Telegraf 后可使用 TDengine CLI 验证从 Telegraf 向 TDengine 写入数据并能够正确读出:
重启 Telegraf:
```
sudo systemctl restart telegraf
```
使用 TDengine CLI 验证从 Telegraf 向 TDengine 写入数据并能够正确读出:
```
taos> show databases;
......
......@@ -5,23 +5,29 @@ title: collectd 写入
import CollectD from "../14-reference/_collectd.mdx"
collectd 是一个守护进程,用来收集系统性能和提供各种存储方式来存储不同值的机制。它会在系统运行和存储信息时周期性的统计系统的相关统计信息。利用这些信息有助于查找当前系统性能瓶颈和预测系统未来的负载等。
collectd 是一个用来收集系统性能的守护进程。collectd 提供各种存储方式来存储不同值的机制。它会在系统运行和存储信息时周期性的统计系统的相关统计信息。利用这些信息有助于查找当前系统性能瓶颈和预测系统未来的负载等。
只需要将 collectd 的配置指向运行 taosAdapter 的服务器域名(或 IP 地址)和相应端口即可将 collectd 采集的数据写入到 TDengine,可以充分利用 TDengine 对时序数据的高效存储查询性能和集群处理能力。
## 前置条件
要将 collectd 数据写入 TDengine, 需要几方面的准备工作。
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正在运行, 具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正常运行, 具体细节请参考[ taosAdapter 的使用手册](/reference/taosadapter)
- collectd 已经安装。安装 collectd 请参考[官方文档](https://collectd.org/download.shtml)
## 配置 collectd
## 配置步骤
<CollectD />
## 验证方法
重启 collectd 后使用 TDengine CLI 验证从 collectd 向 TDengine 写入数据并能够正确读出:
重启 collectd
```
sudo systemctl restart collectd
```
使用 TDengine CLI 验证从 collectd 向 TDengine 写入数据并能够正确读出:
```
taos> show databases;
......
......@@ -12,11 +12,11 @@ StatsD 是汇总和总结应用指标的一个简单的守护进程,近些年
## 前置条件
要将 StatsD 数据写入 TDengine, 需要几方面的准备工作。
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正运行。具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正运行。具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- StatsD 已经安装。安装 StatsD 请参考[官方文档](https://github.com/statsd/statsd)
## 配置 StatsD
## 配置步骤
<StatsD />
## 验证方法
......
......@@ -12,18 +12,27 @@ icinga2 是一款开源主机、网络监控软件,最初由 Nagios 网络监
## 前置条件
要将 icinga2 数据写入 TDengine, 需要几方面的准备工作。
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装但并未运行,或停止在运行中的 taosAdapter ,修改完配置文件再运行。具体细节请参考[ taosAdapter 的使用手册](/reference/taosadapter)
- icinga2 已经安装且并未运行,或停止在运行中的 icinga2 ,修改完配置文件再重新运行。安装 icinga2 请参考[官方文档](https://icinga.com/docs/icinga-2/latest/doc/02-installation/)
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正常运行。具体细节请参考[ taosAdapter 的使用手册](/reference/taosadapter)
- icinga2 已经安装。安装 icinga2 请参考[官方文档](https://icinga.com/docs/icinga-2/latest/doc/02-installation/)
## 配置 icinga2
## 配置步骤
<Icinga2 />
## 验证方法
使用 `systemctl start taosadapter` 启动 taosAdapter。
使用 `systemctl start icinga2` 启动 icinga2。
等待 10 秒左右后,使用 TDengine CLI 查询 TDengine 验证是否创建相应数据库并写入数据。
重启 taosAdapter:
```
sudo systemctl restart taosadapter
```
重启 icinga2:
```
sudo systemctl restart icinga2
```
等待 10 秒左右后,使用 TDengine CLI 查询 TDengine 验证是否创建相应数据库并写入数据:
```
taos> show databases;
......
......@@ -12,16 +12,24 @@ TCollector 是 openTSDB 的一部分,它用来采集客户端日志发送给
## 前置条件
要将 TCollector 数据写入 TDengine, 需要几方面的准备工作。
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装但并未运行,或者停止正在运行中的 taosAdapter,修改完配置文件再运行。具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- TCollector 已经安装且并未运行,或者停止正在运行中的 TCollector ,修改完配置文件再运行。安装 TCollector 请参考[官方文档](http://opentsdb.net/docs/build/html/user_guide/utilities/tcollector.html#installation-of-tcollector)
- TDengine 集群已经部署并正运行
- taosAdapter 已经安装并正常运行。具体细节请参考 [taosAdapter 的使用手册](/reference/taosadapter)
- TCollector 已经安装。安装 TCollector 请参考[官方文档](http://opentsdb.net/docs/build/html/user_guide/utilities/tcollector.html#installation-of-tcollector)
## 配置 TCollector
## 配置步骤
<Tcollector />
## 验证方法
手动执行 `sudo ./tcollector.py` 后使用 TDengine CLI 查询 TDengine 是否创建相应数据库并写入数据。
重启 taosAdapter:
```
sudo systemctl restart taosadapter
```
手动执行 `sudo ./tcollector.py`
等待数秒后使用 TDengine CLI 查询 TDengine 是否创建相应数据库并写入数据。
```
taos> show databases;
......
### 配置 taosAdapter
taosAdapter 默认使用数据库名称为 collectd,如需修改数据库名称请停止 taosAdapter 服务并在 taosAdapter 配置文件中修改后重启 taosadapter。
配置 taosAdapter 接收 collectd 数据的方法:
- 在 taosAdapter 配置文件 (默认位置为 /etc/taos/taosadapter.toml) 中使能配置项
```
[opentsdb_telnet]
enable = true
maxTCPConnections = 250
tcpKeepAlive = false
dbs = ["opentsdb_telnet", "collectd", "icinga2", "tcollector"]
ports = [6046, 6047, 6048, 6049]
user = "root"
password = "taosdata"
```
其中 taosAdapter 默认写入的数据库名称为 `collectd`,也可以修改 taosAdapter 配置文件 dbs 项来指定不同的名称。user 和 password 填写实际 TDengine 配置的值。taosAdapter 需重新启动。
或使用 taosAdapter 命令行参数或设置环境变量启动的方式,使能 taosAdapter 接收 collectd 数据功能。
```
--opentsdb_telnet.dbs strings opentsdb_telnet db names. Env "TAOS_ADAPTER_OPENTSDB_TELNET_DBS" (default [opentsdb_telnet,collectd_tsdb,icinga2_tsdb,tcollector_tsdb])
--opentsdb_telnet.enable enable opentsdb telnet,warning: without auth info(default false). Env "TAOS_ADAPTER_OPENTSDB_TELNET_ENABLE"
--opentsdb_telnet.maxTCPConnections int max tcp connections. Env "TAOS_ADAPTER_OPENTSDB_TELNET_MAX_TCP_CONNECTIONS" (default 250)
--opentsdb_telnet.password string opentsdb_telnet password. Env "TAOS_ADAPTER_OPENTSDB_TELNET_PASSWORD" (default "taosdata")
--opentsdb_telnet.ports ints opentsdb telnet tcp port. Env "TAOS_ADAPTER_OPENTSDB_TELNET_PORTS" (default [6046,6047,6048,6049])
--opentsdb_telnet.tcpKeepAlive enable tcp keep alive. Env "TAOS_ADAPTER_OPENTSDB_TELNET_TCP_KEEP_ALIVE"
--opentsdb_telnet.user string opentsdb_telnet user. Env "TAOS_ADAPTER_OPENTSDB_TELNET_USER" (default "root")
```
### 配置 collectd
#
collectd 使用插件机制可以以多种形式将采集到的监控数据写入到不同的数据存储软件。TDengine 支持直接采集插件和 write_tsdb 插件。
### 配置接收直接采集插件数据
#### 配置接收直接采集插件数据
修改 collectd 配置文件(默认为 /etc/collectd/collectd.conf)相关配置项。
```text
LoadPlugin network
<Plugin network>
Server "<taosAdapter's host>" "<port for collectd direct>"
</Plugin>
```
其中 <taosAdapter's host\> 填写运行 taosAdapter 的服务器域名或 IP 地址。<port for collectd direct\> 填写 taosAdapter 用于接收 collectd 数据的端口(默认为 6045)。
修改 collectd 配置文件 `/etc/collectd/collectd.conf` 配置项。其中 <taosAdapter's host\> 填写运行 taosAdapter 的服务器域名或 IP 地址。taosAdapter 默认使用端口 6045 来接收 collectd 直接采集插件的数据。
实例如下:
```text
LoadPlugin network
<Plugin network>
Server "<taosAdapter's host>" "6045"
Server "127.0.0.1" "6045"
</Plugin>
```
### 配置 write_tsdb 插件数据
#### 配置 write_tsdb 插件数据
修改 collectd 配置文件 `/etc/collectd/collectd.conf` 配置项,其中 <taosAdapter's host\> 填写运行 taosAdapter 的服务器域名或 IP 地址。taosAdapter 默认使用端口 6047 来接收 collectd write_tsdb 插件的数据
修改 collectd 配置文件(默认为 /etc/collectd/collectd.conf)相关配置项
```text
LoadPlugin write_tsdb
<Plugin write_tsdb>
<Node>
Host "<taosAdapter's host>"
Port "<port for collectd write_tsdb plugin>"
...
</Node>
</Plugin>
```
其中 <taosAdapter's host\> 填写运行 taosAdapter 的服务器域名或 IP 地址。<port for collectd write_tsdb plugin\> 填写 taosAdapter 用于接收 collectd write_tsdb 插件的数据(默认为 6047)。
```text
LoadPlugin write_tsdb
<Plugin write_tsdb>
<Node>
Host "127.0.0.1"
Port "6047"
HostTags "status=production"
StoreRates false
......@@ -31,7 +85,7 @@ LoadPlugin write_tsdb
</Plugin>
```
重启 collectd:
然后重启 collectd:
```
systemctl restart collectd
......
### 配置 taosAdapter
配置 taosAdapter 接收 icinga2 数据的方法:
- 在 taosAdapter 配置文件 (默认位置为 /etc/taos/taosadapter.toml) 中使能配置项
```
[opentsdb_telnet]
enable = true
maxTCPConnections = 250
tcpKeepAlive = false
dbs = ["opentsdb_telnet", "collectd", "icinga2", "tcollector"]
ports = [6046, 6047, 6048, 6049]
user = "root"
password = "taosdata"
```
其中 taosAdapter 默认写入的数据库名称为 `icinga2`,也可以修改 taosAdapter 配置文件 dbs 项来指定不同的名称。user 和 password 填写实际 TDengine 配置的值。taosAdapter 需重新启动。
或使用 taosAdapter 命令行参数的方式,使能 taosAdapter 接收 icinga2 数据功能。
```
--opentsdb_telnet.dbs strings opentsdb_telnet db names. Env "TAOS_ADAPTER_OPENTSDB_TELNET_DBS" (default [opentsdb_telnet,collectd_tsdb,icinga2_tsdb,tcollector_tsdb])
--opentsdb_telnet.enable enable opentsdb telnet,warning: without auth info(default false). Env "TAOS_ADAPTER_OPENTSDB_TELNET_ENABLE"
--opentsdb_telnet.maxTCPConnections int max tcp connections. Env "TAOS_ADAPTER_OPENTSDB_TELNET_MAX_TCP_CONNECTIONS" (default 250)
--opentsdb_telnet.password string opentsdb_telnet password. Env "TAOS_ADAPTER_OPENTSDB_TELNET_PASSWORD" (default "taosdata")
--opentsdb_telnet.ports ints opentsdb telnet tcp port. Env "TAOS_ADAPTER_OPENTSDB_TELNET_PORTS" (default [6046,6047,6048,6049])
--opentsdb_telnet.tcpKeepAlive enable tcp keep alive. Env "TAOS_ADAPTER_OPENTSDB_TELNET_TCP_KEEP_ALIVE"
--opentsdb_telnet.user string opentsdb_telnet user. Env "TAOS_ADAPTER_OPENTSDB_TELNET_USER" (default "root")
```
taosAdapter 需重新启动。
### 配置 icinga2
- 使能 icinga2 的 opentsdb-writer(参考链接 https://icinga.com/docs/icinga-2/latest/doc/14-features/#opentsdb-writer)
- 通过修改配置文件 `/etc/taos/taosadapter.toml` 的配置项 `opentsdb_telnet.enable=True`,或使用 taosAdapter 命令行参数的方式,使能 taosAdapter 接收 icinga2 数据功能。taosAdapter 默认写入数据库名称为 icinga2,如果需要指定不同的数据库名称可以在 taosAdapter 配置文件中修改。taosAdapter 需重新启动
- 修改配置文件 `/etc/icinga2/features-enabled/opentsdb.conf` 填写 <taosAdapter's host\> 为运行 taosAdapter 的服务器的域名或 IP 地址,port 填写 taosAdapter 支持接收 icinga2 数据的相应端口(默认为 6048)
- 修改配置文件 `/etc/icinga2/features-enabled/opentsdb.conf` 填写 <taosAdapter's host\> 为运行 taosAdapter 的服务器的域名或 IP 地址,<port for icinga2\> 填写 taosAdapter 支持接收 icinga2 数据的相应端口(默认为 6048)
```
object OpenTsdbWriter "opentsdb" {
host = "<taosAdapter's host>"
port = <port for icinga2>
}
```
实例文件:
```
object OpenTsdbWriter "opentsdb" {
host = "127.0.0.1"
port = 6048
}
```
......
配置 Prometheus 是通过编辑 Prometheus 配置文件 prometheus.yml 完成的。
配置 Prometheus 是通过编辑 Prometheus 配置文件 prometheus.yml (默认路径 /etc/prometheus/prometheus.yml)完成的。
### 配置第三方数据库地址
......
taosAdapter 默认使用数据库名称为 statsd ,如需修改数据库名称请停止 taosAdapter 服务并在 taosAdapter 配置文件中修改后重启 taosadapter。
在 `config.js` 文件中增加如下内容后启动 StatsD,其中 <taosAdapter's host\> 和 <port for StatsD\> 请填写 taosAdapter 配置的实际值(默认为 6044):
StatsD 的配置文件请参考其源码根目录下的示例文件 `exampleConfig.js` 进行修改。其中 <taosAdpater's host\> 填写运行 taosAdapter 的服务器域名或 IP 地址,<port for StatsD\>请填写 taosAdapter 接收 StatsD 数据的端口(默认为 6044)。
```
backends 部分添加 "./backends/repeater"
......@@ -18,3 +18,8 @@ port: 8125
}
```
增加如下内容后启动 StatsD(假设配置文件修改为 config.js)。
```
node stats.js config.js &
```
### 配置 taosAdapter
配置 taosAdapter 接收 TCollector 数据的方法:
- 在 taosAdapter 配置文件 taosadapter.yaml 中使能配置项 `opentsdb_telnet.enable=True`。taosAdapter 默认写入的数据库名称为 `tcollector`,也可以修改 taosAdapter 配置文件来指定不同的名称。
- 修改 TCollector 配置项,将 OpenTSDB 宿主机地址修改为 taosAdapter 被部署的服务器域名或 IP 地址,修改端口号为 taosAdapter 支持 TCollector 使用的相应端口(默认为 6049)。注意:TCollector 各个版本变化较大,以 master 分支代码为例,需要修改 `collectors/etc/config.py` 和 `tcollector.py` 两个文件中相应内容。其他版本需要修改的文件可能有所不同。
- 在 taosAdapter 配置文件 (默认位置为 /etc/taos/taosadapter.toml) 中使能配置项
```
[opentsdb_telnet]
enable = true
maxTCPConnections = 250
tcpKeepAlive = false
dbs = ["opentsdb_telnet", "collectd", "icinga2", "tcollector"]
ports = [6046, 6047, 6048, 6049]
user = "root"
password = "taosdata"
```
其中 taosAdapter 默认写入的数据库名称为 `tcollector`,也可以修改 taosAdapter 配置文件 dbs 项来指定不同的名称。user 和 password 填写实际 TDengine 配置的值。taosAdapter 需重新启动。
或使用 taosAdapter 命令行参数或设置环境变量启动的方式,使能 taosAdapter 接收 tcollector 数据功能。
```
--opentsdb_telnet.dbs strings opentsdb_telnet db names. Env "TAOS_ADAPTER_OPENTSDB_TELNET_DBS" (default [opentsdb_telnet,collectd_tsdb,icinga2_tsdb,tcollector_tsdb])
--opentsdb_telnet.enable enable opentsdb telnet,warning: without auth info(default false). Env "TAOS_ADAPTER_OPENTSDB_TELNET_ENABLE"
--opentsdb_telnet.maxTCPConnections int max tcp connections. Env "TAOS_ADAPTER_OPENTSDB_TELNET_MAX_TCP_CONNECTIONS" (default 250)
--opentsdb_telnet.password string opentsdb_telnet password. Env "TAOS_ADAPTER_OPENTSDB_TELNET_PASSWORD" (default "taosdata")
--opentsdb_telnet.ports ints opentsdb telnet tcp port. Env "TAOS_ADAPTER_OPENTSDB_TELNET_PORTS" (default [6046,6047,6048,6049])
--opentsdb_telnet.tcpKeepAlive enable tcp keep alive. Env "TAOS_ADAPTER_OPENTSDB_TELNET_TCP_KEEP_ALIVE"
--opentsdb_telnet.user string opentsdb_telnet user. Env "TAOS_ADAPTER_OPENTSDB_TELNET_USER" (default "root")
```
### 配置 TCollector
- TCollector 使用其源代码中配置项。注意:TCollector 各个版本区别较大,这里仅以当前 master 分支代码为例,修改 `collectors/etc/config.py` 和 `tcollector.py` 两个文件中相应内容,其他版本需要修改的文件可能有所不同。将原指向 OpenTSDB 宿主机的地址修改为 taosAdapter 被部署的服务器域名或 IP 地址,修改端口为 taosAdapter 支持 TCollector 使用的相应端口(默认为 6049)。
示例为修改内容的 git diff 输出:
```
index e7e7a1c..ec3e23c 100644
--- a/collectors/etc/config.py
+++ b/collectors/etc/config.py
@@ -59,13 +59,13 @@ def get_defaults():
'http_password': False,
'reconnectinterval': 0,
'http_username': False,
- 'port': 4242,
+ 'port': 6049,
'pidfile': '/var/run/tcollector.pid',
'http': False,
'http_api_path': "api/put",
'tags': [],
'remove_inactive_collectors': False,
- 'host': '',
+ 'host': '127.0.0.1',
'logfile': '/var/log/tcollector.log',
'cdir': default_cdir,
'ssl': False,
diff --git a/tcollector.py b/tcollector.py
index 21f9b23..4c71ba2 100755
--- a/tcollector.py
+++ b/tcollector.py
@@ -64,7 +64,7 @@ ALIVE = True
# exceptions, something is not right and tcollector will shutdown.
# Hopefully some kind of supervising daemon will then restart it.
MAX_UNCAUGHT_EXCEPTIONS = 100
-DEFAULT_PORT = 4242
+DEFAULT_PORT = 6049
MAX_REASONABLE_TIMESTAMP = 2209212000 # Good until Tue 3 Jan 14:00:00 GMT 2040
# How long to wait for datapoints before assuming
# a collector is dead and restarting it
@@ -943,13 +943,13 @@ def parse_cmdline(argv):
'http_password': False,
'reconnectinterval': 0,
'http_username': False,
- 'port': 4242,
+ 'port': 6049,
'pidfile': '/var/run/tcollector.pid',
'http': False,
'http_api_path': "api/put",
'tags': [],
'remove_inactive_collectors': False,
- 'host': '',
+ 'host': '127.0.0.1',
'logfile': '/var/log/tcollector.log',
'cdir': default_cdir,
'ssl': False,
```
配置方法,在 `/etc/telegraf/telegraf.conf` 增加如下配置,其中 <taosAdapter's host\> 请填写运行 taosAdapter 服务的服务器域名或 IP 地址,<REST service port\> 请填写 REST 服务的端口(默认为 6041),<TDengine's username\> 和 <TDengine's password\> 请填写当前运行的 TDengine 实际配置,<database name\> 请填写希望在 TDengine 保存 Telegraf 数据的数据库名。
配置方法,在 `/etc/telegraf/telegraf.conf` 增加 outputs.http 输出模块配置:
```
[[outputs.http]]
url = "http://<taosAdapter's host>:<REST service port>/influxdb/v1/write?db=<database name>"
...
username = "<TDengine's username>"
password = "<TDengine's password>"
...
```
其中 <taosAdapter's host\> 请填写运行 taosAdapter 服务的服务器域名或 IP 地址,<REST service port\> 请填写 REST 服务的端口(默认为 6041),<TDengine's username\> 和 <TDengine's password\> 请填写当前运行的 TDengine 实际配置,<database name\> 请填写希望在 TDengine 保存 Telegraf 数据的数据库名。
示例 telegraf.conf 如下:
```
[[outputs.http]]
url = "http://<taosAdapter's host>:<REST service port>/influxdb/v1/write?db=<database name>"
url = "http://127.0.0.1:6041/influxdb/v1/write?db=telegraf"
method = "POST"
timeout = "5s"
username = "<TDengine's username>"
password = "<TDengine's password>"
username = "root"
password = "taosdata"
data_format = "influx"
influx_max_line_bytes = 250
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册