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 + ``` ## 安装部署