docs/observability-centralization-points/metrics-centralization-points/README.md
flowchart BT
C1("**Netdata Child 1**
Production System")
C2("**Netdata Child 2**
Production System")
C3("**Netdata Child N**
Production System")
P1("**Netdata Parent 1**
Centralization Point")
C1 -->|stream| P1
C2 -->|stream| P1
C3 -->|stream| P1
%% Style definitions
classDef child fill:#ffeb3b,stroke:#000000,stroke-width:3px,color:#000000,font-size:16px
classDef parent fill:#4caf50,stroke:#000000,stroke-width:3px,color:#000000,font-size:16px
%% Apply styles
class C1,C2,C3 child
class P1 parent
A Netdata Parent is a regular Netdata Agent configured to receive streaming metrics from Netdata Children (also normal Agents!).
To install a Netdata Parent:
Install Netdata on your Parent node.
For installation instructions, see the Installation section.
After installation, configure stream.conf to enable reception from Children.
See Configuring Metrics Centralization Points for detailed configuration instructions.
:::important
Netdata Streaming and Replication
Copies recent past samples (replication) and real-time new samples (streaming) from production systems (Netdata Children) to metrics centralization points (Netdata Parents). Netdata Parents store the database for these metrics based on retention settings.
:::
| Feature | Netdata Child (Production System) | Netdata Parent (Centralization Point) |
|---|---|---|
| Metrics Retention | Minimal retention; can use ram or alloc mode. | Stores metrics for all connected systems. |
| Machine Learning | Can be disabled (default: enabled). | Runs anomaly detection for all connected systems. |
| Alerts & Notifications | Can be disabled (default: enabled). | Monitors health and sends alerts for all systems. |
| API & Dashboard | Can be disabled (default: enabled). | Hosts the dashboard using its own retention settings. |
| Exporting Metrics | Optional (default: enabled). | Exports all collected metrics. |
| Netdata Functions | Child must be online to function. | Forwards function requests to connected Children. |
| Netdata Cloud | Not required. | Registers all connected systems to Netdata Cloud. |
For detailed guidelines, check Best Practices for Observability Centralization Points.
To understand how node connection states (Live, Stale, Offline) work with Parent-Child setups, see Node States and Transitions.