docs: fix wrong documentation

This commit is contained in:
2025-08-22 16:10:59 +02:00
parent f48ddcf9f7
commit 5d6a7cf468

View File

@@ -177,29 +177,19 @@ The system includes automatic WiFi fallback for robust operation:
## Data Flow ## Data Flow
### Discovery Flow ### Node Discovery
1. **UDP Broadcast**: Nodes broadcast discovery packets on port 4210
2. **UDP Response**: Receiving nodes responds with hostname
3. **Registration**: Discovered nodes are added to local cluster member list
``` ### Health Monitoring
Node A → UDP Broadcast → Node B 1. **Periodic Checks**: Cluster manager polls member nodes every 1 second
Node B → HTTP Response → Node A 2. **Status Collection**: Each node returns resource usage and health metrics
Node A → Add to Cluster → Update Member List
```
### Health Monitoring Flow ### Task Management
1. **Scheduling**: TaskScheduler executes registered tasks at configured intervals
``` 2. **Execution**: Tasks run cooperatively, yielding control to other tasks
Cluster Manager → HTTP Request → Node Status 3. **Monitoring**: Task status and results are exposed via REST API endpoints
Node → JSON Response → Resource Information
Cluster Manager → Update Health → Fire Events
```
### Task Execution Flow
```
Task Scheduler → Check Intervals → Execute Tasks
Task → Update Status → API Server
API Server → JSON Response → Client
```
## Performance Characteristics ## Performance Characteristics