@cryptotaxi247 / netdata-1 / commits / 8d65b11ed

docs: add architecture connectivity diagram to welcome page (#22261)

Add a mermaid flowchart diagram to the 'Who we are' section of welcome-to-netdata.md showing how Child Agents, Parents, and Netdata Cloud interconnect. The diagram illustrates streaming, failover, replication, and Cloud connectivity via ACLK. Co-authored-by: nedi-app[bot] <nedi-app[bot]@users.noreply.github.com>

nedi-app[bot] committed Apr 24, 2026 at 16:21 UTC 8d65b11edb0444c2c9aca229792544632f311755
1 file changed +33
docs/welcome-to-netdata.md
+33
@@ -14,6 +14,39 @@ The system consists of three components:
14 - [**Netdata Parents**](/docs/deployment-guides/deployment-with-centralization-points.md): Optional centralization points for aggregating data from multiple agents (Netdata Parents are the same software component as Netdata Agents, configured as Parents)
15 - [**Netdata Cloud**](/docs/netdata-cloud/README.md): A smart control plane for unifying multiple independent Netdata Agents and Parents, providing horizontal scalability, role based access control, access from anywhere, centralized alerts notifications, team collaboration, AI insights, and more.
16
17 +The following diagram shows how Netdata components connect:
18 +
19 +```mermaid
20 +flowchart TB
21 + C1("Child Agent 1")
22 + C2("Child Agent 2")
23 + C3("Child Agent 3")
24 +
25 + P1("**Parent 1**")
26 + P2("**Parent 2**")
27 +
28 + NC("**Netdata Cloud**<br/>Dashboards, Alerts, AI")
29 +
30 + C1 -->|streaming| P1
31 + C2 -->|streaming| P1
32 + C3 -->|streaming| P2
33 + C2 -.->|failover| P2
34 + P1 <-->|replication| P2
35 + P1 <-->|ACLK| NC
36 + P2 <-->|ACLK| NC
37 +
38 + classDef child fill: #e8f5e8, stroke: #27ae60, stroke-width: 2px, color: #2c3e50, rx: 10, ry: 10
39 + classDef parent fill: #f3e8ff, stroke: #9b59b6, stroke-width: 2px, color: #2c3e50, rx: 10, ry: 10
40 + classDef cloud fill: #e8f4fd, stroke: #4a90e2, stroke-width: 2px, color: #2c3e50, rx: 10, ry: 10
41 +
42 + class C1 child
43 + class C2 child
44 + class C3 child
45 + class P1 parent
46 + class P2 parent
47 + class NC cloud
48 +```
49 +
50 ## Performance at a Glance
51
52 | Aspect | Netdata | Industry Standard |