更新 README.md

This commit is contained in:
2025-12-07 10:35:22 +00:00
parent 205eae38ff
commit d82e8d8741

View File

@@ -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<br/>(数据可视化与管理界面)"]
%% 链路连接
LinuxAgent --> BackendServer
WindowsAgent --> BackendServer
BackendServer --> MySQL
BackendServer --> InfluxDB
InfluxDB --> WebConsole
```
## 安装部署