doc: change based on Jeff comments
This commit is contained in:
parent
ef447bab66
commit
d3db93b913
|
@ -34,4 +34,4 @@ import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
||||||
<td style={{padding:'1em 3em',border:0}}>关注 TDengine 视频号<br/>收看技术直播与教学视频</td>
|
<td style={{padding:'1em 3em',border:0}}>关注 TDengine 视频号<br/>收看技术直播与教学视频</td>
|
||||||
<td style={{padding:'1em 3em',border:0}}>关注 TDengine 公众号<br/>阅读技术文章与行业案例</td>
|
<td style={{padding:'1em 3em',border:0}}>关注 TDengine 公众号<br/>阅读技术文章与行业案例</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
sidebar_label: 数据接入
|
sidebar_label: 零代码数据写入
|
||||||
title: 零代码第三方数据接入
|
title: 零代码第三方数据接入
|
||||||
toc_max_heading_level: 4
|
toc_max_heading_level: 4
|
||||||
---
|
---
|
||||||
|
@ -273,4 +273,11 @@ let v3 = data["voltage"].split(",");
|
||||||
|
|
||||||
## 任务管理
|
## 任务管理
|
||||||
|
|
||||||
在任务列表页面,还可以对任务进行启动、停止、查看、删除、复制等操作,也可以查看各个任务的运行情况,包括写入的记录条数、流量等。
|
在任务列表页面,还可以对任务进行启动、停止、查看、删除、复制等操作,也可以查看各个任务的运行情况,包括写入的记录条数、流量等。
|
||||||
|
|
||||||
|
```mdx-code-block
|
||||||
|
import DocCardList from '@theme/DocCardList';
|
||||||
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
||||||
|
|
||||||
|
<DocCardList items={useCurrentSidebarCategory().items}/>
|
||||||
|
```
|
|
@ -4,11 +4,11 @@ sidebar_label: "taosAdapter"
|
||||||
toc_max_heading_level: 4
|
toc_max_heading_level: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
import Prometheus from "../_prometheus.mdx"
|
import Prometheus from "./_prometheus.mdx"
|
||||||
import CollectD from "../_collectd.mdx"
|
import CollectD from "./_collectd.mdx"
|
||||||
import StatsD from "../_statsd.mdx"
|
import StatsD from "./_statsd.mdx"
|
||||||
import Icinga2 from "../_icinga2.mdx"
|
import Icinga2 from "./_icinga2.mdx"
|
||||||
import TCollector from "../_tcollector.mdx"
|
import TCollector from "./_tcollector.mdx"
|
||||||
|
|
||||||
taosAdapter 是一个 TDengine 的配套工具,是 TDengine 集群和应用程序之间的桥梁和适配器。它提供了一种易于使用和高效的方式来直接从数据收集代理软件(如 Telegraf、StatsD、collectd 等)摄取数据。它还提供了 InfluxDB/OpenTSDB 兼容的数据摄取接口,允许 InfluxDB/OpenTSDB 应用程序无缝移植到 TDengine。
|
taosAdapter 是一个 TDengine 的配套工具,是 TDengine 集群和应用程序之间的桥梁和适配器。它提供了一种易于使用和高效的方式来直接从数据收集代理软件(如 Telegraf、StatsD、collectd 等)摄取数据。它还提供了 InfluxDB/OpenTSDB 兼容的数据摄取接口,允许 InfluxDB/OpenTSDB 应用程序无缝移植到 TDengine。
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: Prometheus
|
||||||
description: 使用 Prometheus 访问 TDengine
|
description: 使用 Prometheus 访问 TDengine
|
||||||
---
|
---
|
||||||
|
|
||||||
import Prometheus from "../../14-reference/_prometheus.mdx"
|
import Prometheus from "../../14-reference//01-components/_prometheus.mdx"
|
||||||
|
|
||||||
Prometheus 是一款流行的开源监控告警系统。Prometheus 于2016年加入了 Cloud Native Computing Foundation (云原生云计算基金会,简称 CNCF),成为继 Kubernetes 之后的第二个托管项目,该项目拥有非常活跃的开发人员和用户社区。
|
Prometheus 是一款流行的开源监控告警系统。Prometheus 于2016年加入了 Cloud Native Computing Foundation (云原生云计算基金会,简称 CNCF),成为继 Kubernetes 之后的第二个托管项目,该项目拥有非常活跃的开发人员和用户社区。
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: Telegraf 写入
|
||||||
description: 使用 Telegraf 向 TDengine 写入数据
|
description: 使用 Telegraf 向 TDengine 写入数据
|
||||||
---
|
---
|
||||||
|
|
||||||
import Telegraf from "../../14-reference/_telegraf.mdx"
|
import Telegraf from "../../14-reference/01-components/_telegraf.mdx"
|
||||||
|
|
||||||
Telegraf 是一款十分流行的指标采集开源软件。在数据采集和平台监控系统中,Telegraf 可以采集多种组件的运行信息,而不需要自己手写脚本定时采集,降低数据获取的难度。
|
Telegraf 是一款十分流行的指标采集开源软件。在数据采集和平台监控系统中,Telegraf 可以采集多种组件的运行信息,而不需要自己手写脚本定时采集,降低数据获取的难度。
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: collectd 写入
|
||||||
description: 使用 collected 向 TDengine 写入数据
|
description: 使用 collected 向 TDengine 写入数据
|
||||||
---
|
---
|
||||||
|
|
||||||
import CollectD from "../../14-reference/_collectd.mdx"
|
import CollectD from "../../14-reference/01-components/_collectd.mdx"
|
||||||
|
|
||||||
collectd 是一个用来收集系统性能的守护进程。collectd 提供各种存储方式来存储不同值的机制。它会在系统运行和存储信息时周期性的统计系统的相关统计信息。利用这些信息有助于查找当前系统性能瓶颈和预测系统未来的负载等。
|
collectd 是一个用来收集系统性能的守护进程。collectd 提供各种存储方式来存储不同值的机制。它会在系统运行和存储信息时周期性的统计系统的相关统计信息。利用这些信息有助于查找当前系统性能瓶颈和预测系统未来的负载等。
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: StatsD 直接写入
|
||||||
description: 使用 StatsD 向 TDengine 写入
|
description: 使用 StatsD 向 TDengine 写入
|
||||||
---
|
---
|
||||||
|
|
||||||
import StatsD from "../../14-reference/_statsd.mdx"
|
import StatsD from "../../14-reference/01-components/_statsd.mdx"
|
||||||
|
|
||||||
StatsD 是汇总和总结应用指标的一个简单的守护进程,近些年来发展迅速,已经变成了一个用于收集应用性能指标的统一的协议。
|
StatsD 是汇总和总结应用指标的一个简单的守护进程,近些年来发展迅速,已经变成了一个用于收集应用性能指标的统一的协议。
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: icinga2 写入
|
||||||
description: 使用 icinga2 写入 TDengine
|
description: 使用 icinga2 写入 TDengine
|
||||||
---
|
---
|
||||||
|
|
||||||
import Icinga2 from "../../14-reference/_icinga2.mdx"
|
import Icinga2 from "../../14-reference/01-components/_icinga2.mdx"
|
||||||
|
|
||||||
icinga2 是一款开源主机、网络监控软件,最初由 Nagios 网络监控应用发展而来。目前,icinga2 遵从 GNU GPL v2 许可协议发行。
|
icinga2 是一款开源主机、网络监控软件,最初由 Nagios 网络监控应用发展而来。目前,icinga2 遵从 GNU GPL v2 许可协议发行。
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: TCollector 写入
|
||||||
description: 使用 TCollector 写入 TDengine
|
description: 使用 TCollector 写入 TDengine
|
||||||
---
|
---
|
||||||
|
|
||||||
import TCollector from "../../14-reference/_tcollector.mdx"
|
import TCollector from "../../14-reference/01-components/_tcollector.mdx"
|
||||||
|
|
||||||
TCollector 是 openTSDB 的一部分,它用来采集客户端日志发送给数据库。
|
TCollector 是 openTSDB 的一部分,它用来采集客户端日志发送给数据库。
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
---
|
---
|
||||||
sidebar_label: 数据采集
|
sidebar_label: 数据采集
|
||||||
title: 与数据采集类工具的集成
|
title: 与数据采集类工具的集成
|
||||||
toc_max_heading_level: 4
|
toc_max_heading_level: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
|
```mdx-code-block
|
||||||
|
import DocCardList from '@theme/DocCardList';
|
||||||
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
||||||
|
|
||||||
|
<DocCardList items={useCurrentSidebarCategory().items}/>
|
||||||
|
```
|
|
@ -1,5 +1,12 @@
|
||||||
---
|
---
|
||||||
sidebar_label: 可视化
|
sidebar_label: 可视化
|
||||||
title: 与可视化工具的集成
|
title: 与可视化工具的集成
|
||||||
toc_max_heading_level: 4
|
toc_max_heading_level: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
|
```mdx-code-block
|
||||||
|
import DocCardList from '@theme/DocCardList';
|
||||||
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
||||||
|
|
||||||
|
<DocCardList items={useCurrentSidebarCategory().items}/>
|
||||||
|
```
|
|
@ -1,5 +1,12 @@
|
||||||
---
|
---
|
||||||
sidebar_label: 数据分析
|
sidebar_label: 数据分析
|
||||||
title: 与数据分析类工具的集成
|
title: 与数据分析类工具的集成
|
||||||
toc_max_heading_level: 4
|
toc_max_heading_level: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
|
```mdx-code-block
|
||||||
|
import DocCardList from '@theme/DocCardList';
|
||||||
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
||||||
|
|
||||||
|
<DocCardList items={useCurrentSidebarCategory().items}/>
|
||||||
|
```
|
|
@ -1,5 +1,12 @@
|
||||||
---
|
---
|
||||||
sidebar_label: 管理开发
|
sidebar_label: 管理开发
|
||||||
title: 与各种管理开发工具的集成
|
title: 与各种管理开发工具的集成
|
||||||
toc_max_heading_level: 4
|
toc_max_heading_level: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
|
```mdx-code-block
|
||||||
|
import DocCardList from '@theme/DocCardList';
|
||||||
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
||||||
|
|
||||||
|
<DocCardList items={useCurrentSidebarCategory().items}/>
|
||||||
|
```
|
Loading…
Reference in New Issue