update docs

This commit is contained in:
2026-03-16 13:32:49 -03:00
parent 91f95d55a5
commit 0f60556e81
9 changed files with 495 additions and 494 deletions

View File

@@ -24,9 +24,19 @@ digraph SystemOverview {
machines [label="Monitored\nMachines", fillcolor="#FFF3E0", shape=box3d];
}
// Edge (AWS)
subgraph cluster_edge {
label="AWS (sysmonstm.mcrn.ar)";
style=filled;
color="#F3E5F5";
fillcolor="#F3E5F5";
edge_relay [label="Edge\n(WebSocket Relay)", fillcolor="#E1BEE7"];
}
// Core Services
subgraph cluster_services {
label="Application Services";
label="Local Stack";
style=filled;
color="#E8F5E9";
fillcolor="#E8F5E9";
@@ -59,7 +69,10 @@ digraph SystemOverview {
}
// Connections
browser -> gateway [label="WebSocket\nREST", color="#1976D2"];
browser -> edge_relay [label="WebSocket", color="#1976D2"];
edge_relay -> gateway [label="WebSocket\nForward", color="#1976D2", dir=back];
browser -> gateway [label="WebSocket\n(local dev)", color="#1976D2", style=dashed];
gateway -> aggregator [label="gRPC", color="#388E3C"];
gateway -> redis [label="State\nQuery", style=dashed];
gateway -> timescale [label="Historical\nQuery", style=dashed];
@@ -73,6 +86,4 @@ digraph SystemOverview {
events -> alerts [label="Subscribe", color="#7B1FA2"];
events -> gateway [label="Subscribe", color="#7B1FA2"];
alerts -> timescale [label="Store\nAlerts", style=dashed];
}