From d82e8d874179faea6f07430ce26a27bc9eabf24f Mon Sep 17 00:00:00 2001 From: yangdx Date: Sun, 7 Dec 2025 10:35:22 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 3fc8dc7..d37a7fd 100644 --- a/README.md +++ b/README.md @@ -27,24 +27,28 @@ ## 系统架构 ``` -┌─────────────────┐ ┌─────────────────┐ -│ Linux 代理 │──────▶│ │──────▶ -└─────────────────┘ │ │ - │ Backend Server │ -┌─────────────────┐ │ │ -│ Windows 代理 │──────▶│ │ -└─────────────────┘ └─────────────────┘ - │ - ┌───────────────┴──────────────┐ - ▼ ▼ -┌─────────────────┐ ┌─────────────────┐ -│ MySQL │ │ InfluxDB │ -└─────────────────┘ └─────────────────┘ - │ - ▼ -┌───────────────────────────────────────────┐ -│ Web Console (数据可视化与管理界面) │ -└───────────────────────────────────────────┘ +flowchart LR + subgraph 代理层 + LinuxAgent["Linux 代理"] + WindowsAgent["Windows 代理"] + end + + BackendServer["Backend Server"] + + subgraph 数据存储层 + MySQL["MySQL"] + InfluxDB["InfluxDB"] + end + + WebConsole["Web Console
(数据可视化与管理界面)"] + + %% 链路连接 + LinuxAgent --> BackendServer + WindowsAgent --> BackendServer + BackendServer --> MySQL + BackendServer --> InfluxDB + InfluxDB --> WebConsole + ``` ## 安装部署