From e3803e5df290478c0c65324e12af42d7a18cccd3 Mon Sep 17 00:00:00 2001 From: danielclow <106956386+danielclow@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:04:15 +0800 Subject: [PATCH] docs: move resource files to assets directory --- docs/en/07-develop/01-connect.md | 26 +++++++++---------- .../01-collection/02-prometheus.md | 2 +- .../01-collection/03-telegraf.md | 2 +- .../01-collection/05-collectd.md | 2 +- .../10-third-party/01-collection/06-statsd.md | 2 +- .../01-collection/07-icinga2.md | 2 +- .../01-collection/08-tcollector.md | 2 +- .../01-components/03-taosadapter.md | 10 +++---- docs/en/14-reference/05-connector/14-java.md | 2 +- docs/en/14-reference/05-connector/20-go.md | 2 +- docs/en/14-reference/05-connector/26-rust.md | 4 +-- .../en/14-reference/05-connector/30-python.md | 4 +-- docs/en/14-reference/05-connector/35-node.md | 2 +- .../en/14-reference/05-connector/40-csharp.md | 2 +- .../en/14-reference/05-connector/43-r-lang.md | 2 +- docs/en/14-reference/05-connector/index.md | 12 ++++----- .../resources}/_collectd.mdx | 0 .../resources}/_connect_c.mdx | 0 .../resources}/_connect_cs.mdx | 0 .../resources}/_connect_go.mdx | 0 .../resources}/_connect_java.mdx | 0 .../resources}/_connect_node.mdx | 0 .../resources}/_connect_php.mdx | 0 .../resources}/_connect_python.mdx | 0 .../resources}/_connect_r.mdx | 0 .../resources}/_connect_rust.mdx | 0 .../resources}/_icinga2.mdx | 0 .../resources}/_linux_install.mdx | 0 .../resources}/_macos_install.mdx | 0 .../resources}/_preparation.mdx | 0 .../resources}/_prometheus.mdx | 0 .../resources}/_request_id.mdx | 0 .../resources}/_statsd.mdx | 0 .../resources}/_tcollector.mdx | 0 .../resources}/_telegraf.mdx | 0 .../resources}/_verify_linux.mdx | 0 .../resources}/_verify_macos.mdx | 0 .../resources}/_verify_windows.mdx | 0 .../resources}/_windows_install.mdx | 0 39 files changed, 39 insertions(+), 39 deletions(-) rename docs/en/{10-third-party/01-collection => assets/resources}/_collectd.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_c.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_cs.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_go.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_java.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_node.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_php.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_python.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_r.mdx (100%) rename docs/en/{07-develop => assets/resources}/_connect_rust.mdx (100%) rename docs/en/{10-third-party/01-collection => assets/resources}/_icinga2.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_linux_install.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_macos_install.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_preparation.mdx (100%) rename docs/en/{10-third-party/01-collection => assets/resources}/_prometheus.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_request_id.mdx (100%) rename docs/en/{10-third-party/01-collection => assets/resources}/_statsd.mdx (100%) rename docs/en/{10-third-party/01-collection => assets/resources}/_tcollector.mdx (100%) rename docs/en/{10-third-party/01-collection => assets/resources}/_telegraf.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_verify_linux.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_verify_macos.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_verify_windows.mdx (100%) rename docs/en/{14-reference/05-connector => assets/resources}/_windows_install.mdx (100%) diff --git a/docs/en/07-develop/01-connect.md b/docs/en/07-develop/01-connect.md index 66bd9b6b16..af5f171f8c 100644 --- a/docs/en/07-develop/01-connect.md +++ b/docs/en/07-develop/01-connect.md @@ -7,19 +7,19 @@ import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import Image from '@theme/IdealImage'; import imgConnect from '../assets/connecting-to-tdengine-01.png'; -import ConnJava from "./_connect_java.mdx"; -import ConnGo from "./_connect_go.mdx"; -import ConnRust from "./_connect_rust.mdx"; -import ConnNode from "./_connect_node.mdx"; -import ConnPythonNative from "./_connect_python.mdx"; -import ConnCSNative from "./_connect_cs.mdx"; -import ConnC from "./_connect_c.mdx"; -import InstallOnLinux from "../14-reference/05-connector/_linux_install.mdx"; -import InstallOnWindows from "../14-reference/05-connector/_windows_install.mdx"; -import InstallOnMacOS from "../14-reference/05-connector/_macos_install.mdx"; -import VerifyLinux from "../14-reference/05-connector/_verify_linux.mdx"; -import VerifyMacOS from "../14-reference/05-connector/_verify_macos.mdx"; -import VerifyWindows from "../14-reference/05-connector/_verify_windows.mdx"; +import ConnJava from "../assets/resources/_connect_java.mdx"; +import ConnGo from "../assets/resources/_connect_go.mdx"; +import ConnRust from "../assets/resources/_connect_rust.mdx"; +import ConnNode from "../assets/resources/_connect_node.mdx"; +import ConnPythonNative from "../assets/resources/_connect_python.mdx"; +import ConnCSNative from "../assets/resources/_connect_cs.mdx"; +import ConnC from "../assets/resources/_connect_c.mdx"; +import InstallOnLinux from "../assets/resources/_linux_install.mdx"; +import InstallOnWindows from "../assets/resources/_windows_install.mdx"; +import InstallOnMacOS from "../assets/resources/_macos_install.mdx"; +import VerifyLinux from "../assets/resources/_verify_linux.mdx"; +import VerifyMacOS from "../assets/resources/_verify_macos.mdx"; +import VerifyWindows from "../assets/resources/_verify_windows.mdx"; TDengine provides a rich set of application development interfaces. To facilitate users in quickly developing their applications, TDengine supports connectors for multiple programming languages. The official connectors include support for C/C++, Java, Python, Go, Node.js, C#, Rust, Lua (community contribution), and PHP (community contribution). These connectors support connecting to the TDengine cluster using the native interface (taosc) and REST interface (not supported in some languages yet). Community developers have also contributed several unofficial connectors, such as ADO.NET connector, Lua connector, and PHP connector. Additionally, TDengine can directly call the REST API provided by taosadapter for data writing and querying operations. diff --git a/docs/en/10-third-party/01-collection/02-prometheus.md b/docs/en/10-third-party/01-collection/02-prometheus.md index fa9bc3308b..dba317b788 100644 --- a/docs/en/10-third-party/01-collection/02-prometheus.md +++ b/docs/en/10-third-party/01-collection/02-prometheus.md @@ -3,7 +3,7 @@ title: Prometheus slug: /third-party-tools/data-collection/prometheus --- -import Prometheus from "./_prometheus.mdx" +import Prometheus from "../../assets/resources/_prometheus.mdx" Prometheus is a popular open-source monitoring and alerting system. In 2016, Prometheus joined the Cloud Native Computing Foundation (CNCF), becoming the second hosted project after Kubernetes. The project has a very active developer and user community. diff --git a/docs/en/10-third-party/01-collection/03-telegraf.md b/docs/en/10-third-party/01-collection/03-telegraf.md index 148812450d..5652532e2e 100644 --- a/docs/en/10-third-party/01-collection/03-telegraf.md +++ b/docs/en/10-third-party/01-collection/03-telegraf.md @@ -3,7 +3,7 @@ title: Telegraf slug: /third-party-tools/data-collection/telegraf --- -import Telegraf from "./_telegraf.mdx" +import Telegraf from "../../assets/resources/_telegraf.mdx" Telegraf is a very popular open-source metric collection software. In data collection and platform monitoring systems, Telegraf can collect operational information from various components without the need to manually write scripts for periodic collection, reducing the difficulty of data acquisition. diff --git a/docs/en/10-third-party/01-collection/05-collectd.md b/docs/en/10-third-party/01-collection/05-collectd.md index b17aa247ab..e5ea0d890d 100644 --- a/docs/en/10-third-party/01-collection/05-collectd.md +++ b/docs/en/10-third-party/01-collection/05-collectd.md @@ -3,7 +3,7 @@ title: collectd slug: /third-party-tools/data-collection/collectd --- -import CollectD from "./_collectd.mdx" +import CollectD from "../../assets/resources/_collectd.mdx" collectd is a daemon for collecting system performance. collectd provides various storage mechanisms to store different values. It periodically collects relevant statistical information about the system while it is running and storing information. Utilizing this information helps identify current system performance bottlenecks and predict future system loads. diff --git a/docs/en/10-third-party/01-collection/06-statsd.md b/docs/en/10-third-party/01-collection/06-statsd.md index d441fab585..ded4525d8a 100644 --- a/docs/en/10-third-party/01-collection/06-statsd.md +++ b/docs/en/10-third-party/01-collection/06-statsd.md @@ -3,7 +3,7 @@ title: StatsD slug: /third-party-tools/data-collection/statsd --- -import StatsD from "./_statsd.mdx" +import StatsD from "../../assets/resources/_statsd.mdx" StatsD is a simple daemon for aggregating and summarizing application metrics that has rapidly evolved in recent years into a unified protocol for collecting application performance metrics. diff --git a/docs/en/10-third-party/01-collection/07-icinga2.md b/docs/en/10-third-party/01-collection/07-icinga2.md index 76abda9d4e..c94ecab232 100644 --- a/docs/en/10-third-party/01-collection/07-icinga2.md +++ b/docs/en/10-third-party/01-collection/07-icinga2.md @@ -3,7 +3,7 @@ title: Icinga2 slug: /third-party-tools/data-collection/icinga2 --- -import Icinga2 from "./_icinga2.mdx" +import Icinga2 from "../../assets/resources/_icinga2.mdx" icinga2 is an open-source host and network monitoring software, originally developed from the Nagios network monitoring application. Currently, icinga2 is released under the GNU GPL v2 license. diff --git a/docs/en/10-third-party/01-collection/08-tcollector.md b/docs/en/10-third-party/01-collection/08-tcollector.md index eb4145a9d8..7cf49fb429 100644 --- a/docs/en/10-third-party/01-collection/08-tcollector.md +++ b/docs/en/10-third-party/01-collection/08-tcollector.md @@ -3,7 +3,7 @@ title: TCollector slug: /third-party-tools/data-collection/tcollector --- -import TCollector from "./_tcollector.mdx" +import TCollector from "../../assets/resources/_tcollector.mdx" TCollector is part of openTSDB, used for collecting client logs and sending them to the database. diff --git a/docs/en/14-reference/01-components/03-taosadapter.md b/docs/en/14-reference/01-components/03-taosadapter.md index 85e2842ab8..13b7c047f4 100644 --- a/docs/en/14-reference/01-components/03-taosadapter.md +++ b/docs/en/14-reference/01-components/03-taosadapter.md @@ -6,11 +6,11 @@ slug: /tdengine-reference/components/taosadapter import Image from '@theme/IdealImage'; import imgAdapter from '../../assets/taosadapter-01.png'; -import Prometheus from "../../10-third-party/01-collection/_prometheus.mdx" -import CollectD from "../../10-third-party/01-collection/_collectd.mdx" -import StatsD from "../../10-third-party/01-collection/_statsd.mdx" -import Icinga2 from "../../10-third-party/01-collection/_icinga2.mdx" -import TCollector from "../../10-third-party/01-collection/_tcollector.mdx" +import Prometheus from "../../assets/resources/_prometheus.mdx" +import CollectD from "../../assets/resources/_collectd.mdx" +import StatsD from "../../assets/resources/_statsd.mdx" +import Icinga2 from "../../assets/resources/_icinga2.mdx" +import TCollector from "../../assets/resources/_tcollector.mdx" taosAdapter is a companion tool for TDengine, serving as a bridge and adapter between the TDengine cluster and applications. It provides an easy and efficient way to ingest data directly from data collection agents (such as Telegraf, StatsD, collectd, etc.). It also offers InfluxDB/OpenTSDB compatible data ingestion interfaces, allowing InfluxDB/OpenTSDB applications to be seamlessly ported to TDengine. diff --git a/docs/en/14-reference/05-connector/14-java.md b/docs/en/14-reference/05-connector/14-java.md index 188aa6e6b4..270ef59fd2 100644 --- a/docs/en/14-reference/05-connector/14-java.md +++ b/docs/en/14-reference/05-connector/14-java.md @@ -6,7 +6,7 @@ slug: /tdengine-reference/client-libraries/java import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -import RequestId from "./_request_id.mdx"; +import RequestId from "../../assets/resources/_request_id.mdx"; `taos-jdbcdriver` is the official Java connector for TDengine, allowing Java developers to develop applications that access the TDengine database. `taos-jdbcdriver` implements the interfaces of the JDBC driver standard. diff --git a/docs/en/14-reference/05-connector/20-go.md b/docs/en/14-reference/05-connector/20-go.md index 3342066a3d..3c77a115be 100644 --- a/docs/en/14-reference/05-connector/20-go.md +++ b/docs/en/14-reference/05-connector/20-go.md @@ -6,7 +6,7 @@ slug: /tdengine-reference/client-libraries/go import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -import RequestId from "./_request_id.mdx"; +import RequestId from "../../assets/resources/_request_id.mdx"; `driver-go` is the official Go language connector for TDengine, implementing the interface of the Go language [database/sql](https://golang.org/pkg/database/sql/) package. Go developers can use it to develop applications that access data in the TDengine cluster. diff --git a/docs/en/14-reference/05-connector/26-rust.md b/docs/en/14-reference/05-connector/26-rust.md index 5ed51e158d..fa5ae308b7 100644 --- a/docs/en/14-reference/05-connector/26-rust.md +++ b/docs/en/14-reference/05-connector/26-rust.md @@ -7,8 +7,8 @@ slug: /tdengine-reference/client-libraries/rust import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -import Preparation from "./_preparation.mdx" -import RequestId from "./_request_id.mdx"; +import Preparation from "../../assets/resources/_preparation.mdx" +import RequestId from "../../assets/resources/_request_id.mdx"; [![Crates.io](https://img.shields.io/crates/v/taos)](https://crates.io/crates/taos) ![Crates.io](https://img.shields.io/crates/d/taos) [![docs.rs](https://img.shields.io/docsrs/taos)](https://docs.rs/taos) diff --git a/docs/en/14-reference/05-connector/30-python.md b/docs/en/14-reference/05-connector/30-python.md index 058f21de7f..966bb7a252 100644 --- a/docs/en/14-reference/05-connector/30-python.md +++ b/docs/en/14-reference/05-connector/30-python.md @@ -6,7 +6,7 @@ slug: /tdengine-reference/client-libraries/python import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; -import RequestId from "./_request_id.mdx"; +import RequestId from "../../assets/resources/_request_id.mdx"; `taospy` is the official Python connector for TDengine. `taospy` provides a rich API, making it convenient for Python applications to use TDengine. @@ -129,7 +129,7 @@ Example program source code can be found at: ## About Nanosecond (nanosecond) Due to the current imperfect support for nanoseconds in Python (see the links below), the current implementation returns an integer when nanosecond precision is used, rather than the datetime type returned for ms and us. Application developers need to handle this themselves, and it is recommended to use pandas' to_datetime(). If Python officially fully supports nanoseconds in the future, the Python connector may modify the relevant interfaces. - + ## Common Questions Feel free to [ask questions or report issues](https://github.com/taosdata/taos-connector-python/issues). diff --git a/docs/en/14-reference/05-connector/35-node.md b/docs/en/14-reference/05-connector/35-node.md index 202f151469..9847dff8fe 100644 --- a/docs/en/14-reference/05-connector/35-node.md +++ b/docs/en/14-reference/05-connector/35-node.md @@ -6,7 +6,7 @@ slug: /tdengine-reference/client-libraries/node import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; -import RequestId from "./_request_id.mdx"; +import RequestId from "../../assets/resources/_request_id.mdx"; `@tdengine/websocket` is the official Node.js language connector for TDengine. Node.js developers can use it to develop applications that access the TDengine database. diff --git a/docs/en/14-reference/05-connector/40-csharp.md b/docs/en/14-reference/05-connector/40-csharp.md index 0012b483ec..494755f21d 100644 --- a/docs/en/14-reference/05-connector/40-csharp.md +++ b/docs/en/14-reference/05-connector/40-csharp.md @@ -6,7 +6,7 @@ slug: /tdengine-reference/client-libraries/csharp import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -import RequestId from "./_request_id.mdx"; +import RequestId from "../../assets/resources/_request_id.mdx"; `TDengine.Connector` is the C# language connector provided by TDengine. C# developers can use it to develop C# applications that access data in the TDengine cluster. diff --git a/docs/en/14-reference/05-connector/43-r-lang.md b/docs/en/14-reference/05-connector/43-r-lang.md index 1f6807d803..25fe54189c 100644 --- a/docs/en/14-reference/05-connector/43-r-lang.md +++ b/docs/en/14-reference/05-connector/43-r-lang.md @@ -6,7 +6,7 @@ slug: /tdengine-reference/client-libraries/r-lang import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -import Rdemo from "../../07-develop/_connect_r.mdx" +import Rdemo from "../../assets/resources/_connect_r.mdx" The RJDBC library in R language can enable R language programs to access TDengine data. Here are the installation process, configuration process, and R language example code. diff --git a/docs/en/14-reference/05-connector/index.md b/docs/en/14-reference/05-connector/index.md index 82b5c8f39a..baa78589fd 100644 --- a/docs/en/14-reference/05-connector/index.md +++ b/docs/en/14-reference/05-connector/index.md @@ -7,12 +7,12 @@ import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import Image from '@theme/IdealImage'; import imgClientLib from '../../assets/client-libraries-01.png'; -import InstallOnLinux from "./_linux_install.mdx"; -import InstallOnWindows from "./_windows_install.mdx"; -import InstallOnMacOS from "./_macos_install.mdx"; -import VerifyWindows from "./_verify_windows.mdx"; -import VerifyLinux from "./_verify_linux.mdx"; -import VerifyMacOS from "./_verify_macos.mdx"; +import InstallOnLinux from "../../assets/resources/_linux_install.mdx"; +import InstallOnWindows from "../../assets/resources/_windows_install.mdx"; +import InstallOnMacOS from "../../assets/resources/_macos_install.mdx"; +import VerifyWindows from "../../assets/resources/_verify_windows.mdx"; +import VerifyLinux from "../../assets/resources/_verify_linux.mdx"; +import VerifyMacOS from "../../assets/resources/_verify_macos.mdx"; TDengine provides a rich set of application development interfaces. To facilitate users in quickly developing their own applications, TDengine supports connectors for multiple programming languages, including official connectors for C/C++, Java, Python, Go, Node.js, C#, and Rust. These connectors support connecting to the TDengine cluster using the native interface (taosc) and WebSocket interface. Community developers have also contributed several unofficial connectors, such as the ADO.NET connector, Lua connector, and PHP connector. diff --git a/docs/en/10-third-party/01-collection/_collectd.mdx b/docs/en/assets/resources/_collectd.mdx similarity index 100% rename from docs/en/10-third-party/01-collection/_collectd.mdx rename to docs/en/assets/resources/_collectd.mdx diff --git a/docs/en/07-develop/_connect_c.mdx b/docs/en/assets/resources/_connect_c.mdx similarity index 100% rename from docs/en/07-develop/_connect_c.mdx rename to docs/en/assets/resources/_connect_c.mdx diff --git a/docs/en/07-develop/_connect_cs.mdx b/docs/en/assets/resources/_connect_cs.mdx similarity index 100% rename from docs/en/07-develop/_connect_cs.mdx rename to docs/en/assets/resources/_connect_cs.mdx diff --git a/docs/en/07-develop/_connect_go.mdx b/docs/en/assets/resources/_connect_go.mdx similarity index 100% rename from docs/en/07-develop/_connect_go.mdx rename to docs/en/assets/resources/_connect_go.mdx diff --git a/docs/en/07-develop/_connect_java.mdx b/docs/en/assets/resources/_connect_java.mdx similarity index 100% rename from docs/en/07-develop/_connect_java.mdx rename to docs/en/assets/resources/_connect_java.mdx diff --git a/docs/en/07-develop/_connect_node.mdx b/docs/en/assets/resources/_connect_node.mdx similarity index 100% rename from docs/en/07-develop/_connect_node.mdx rename to docs/en/assets/resources/_connect_node.mdx diff --git a/docs/en/07-develop/_connect_php.mdx b/docs/en/assets/resources/_connect_php.mdx similarity index 100% rename from docs/en/07-develop/_connect_php.mdx rename to docs/en/assets/resources/_connect_php.mdx diff --git a/docs/en/07-develop/_connect_python.mdx b/docs/en/assets/resources/_connect_python.mdx similarity index 100% rename from docs/en/07-develop/_connect_python.mdx rename to docs/en/assets/resources/_connect_python.mdx diff --git a/docs/en/07-develop/_connect_r.mdx b/docs/en/assets/resources/_connect_r.mdx similarity index 100% rename from docs/en/07-develop/_connect_r.mdx rename to docs/en/assets/resources/_connect_r.mdx diff --git a/docs/en/07-develop/_connect_rust.mdx b/docs/en/assets/resources/_connect_rust.mdx similarity index 100% rename from docs/en/07-develop/_connect_rust.mdx rename to docs/en/assets/resources/_connect_rust.mdx diff --git a/docs/en/10-third-party/01-collection/_icinga2.mdx b/docs/en/assets/resources/_icinga2.mdx similarity index 100% rename from docs/en/10-third-party/01-collection/_icinga2.mdx rename to docs/en/assets/resources/_icinga2.mdx diff --git a/docs/en/14-reference/05-connector/_linux_install.mdx b/docs/en/assets/resources/_linux_install.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_linux_install.mdx rename to docs/en/assets/resources/_linux_install.mdx diff --git a/docs/en/14-reference/05-connector/_macos_install.mdx b/docs/en/assets/resources/_macos_install.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_macos_install.mdx rename to docs/en/assets/resources/_macos_install.mdx diff --git a/docs/en/14-reference/05-connector/_preparation.mdx b/docs/en/assets/resources/_preparation.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_preparation.mdx rename to docs/en/assets/resources/_preparation.mdx diff --git a/docs/en/10-third-party/01-collection/_prometheus.mdx b/docs/en/assets/resources/_prometheus.mdx similarity index 100% rename from docs/en/10-third-party/01-collection/_prometheus.mdx rename to docs/en/assets/resources/_prometheus.mdx diff --git a/docs/en/14-reference/05-connector/_request_id.mdx b/docs/en/assets/resources/_request_id.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_request_id.mdx rename to docs/en/assets/resources/_request_id.mdx diff --git a/docs/en/10-third-party/01-collection/_statsd.mdx b/docs/en/assets/resources/_statsd.mdx similarity index 100% rename from docs/en/10-third-party/01-collection/_statsd.mdx rename to docs/en/assets/resources/_statsd.mdx diff --git a/docs/en/10-third-party/01-collection/_tcollector.mdx b/docs/en/assets/resources/_tcollector.mdx similarity index 100% rename from docs/en/10-third-party/01-collection/_tcollector.mdx rename to docs/en/assets/resources/_tcollector.mdx diff --git a/docs/en/10-third-party/01-collection/_telegraf.mdx b/docs/en/assets/resources/_telegraf.mdx similarity index 100% rename from docs/en/10-third-party/01-collection/_telegraf.mdx rename to docs/en/assets/resources/_telegraf.mdx diff --git a/docs/en/14-reference/05-connector/_verify_linux.mdx b/docs/en/assets/resources/_verify_linux.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_verify_linux.mdx rename to docs/en/assets/resources/_verify_linux.mdx diff --git a/docs/en/14-reference/05-connector/_verify_macos.mdx b/docs/en/assets/resources/_verify_macos.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_verify_macos.mdx rename to docs/en/assets/resources/_verify_macos.mdx diff --git a/docs/en/14-reference/05-connector/_verify_windows.mdx b/docs/en/assets/resources/_verify_windows.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_verify_windows.mdx rename to docs/en/assets/resources/_verify_windows.mdx diff --git a/docs/en/14-reference/05-connector/_windows_install.mdx b/docs/en/assets/resources/_windows_install.mdx similarity index 100% rename from docs/en/14-reference/05-connector/_windows_install.mdx rename to docs/en/assets/resources/_windows_install.mdx