Skip to main content

Logs Centralization Points

A logs centralization point is a machine that receives logs from other machines, so you can explore many systems' logs in one place. Netdata imposes no specific centralization model: you can centralize everything, centralize only some systems, run many independent centralization points, or stay fully distributed — and mix all of these.

Netdata does not need a centralization point: it reads the logs of each node where they already are. Build journal or event centralization when your own operations require it — SIEM ingestion, compliance tooling, or retention on a dedicated machine — and Netdata on the aggregation point manages the aggregated data. To centralize logs into Netdata's own log store, use OpenTelemetry.

Centralization transports

Each platform centralizes logs with its own native mechanism, and Netdata works identically on the receiving side:

TransportPlatformResult on the aggregation point
systemd-journal-remote / systemd-journal-uploadLinuxNative journal files per sender, explorable under the systemd-journal source
Windows Event Forwarding (WEF)WindowsNative event channels with events from all forwarders, explorable under the windows-events source
OpenTelemetry (OTLP/gRPC)AnyNetdata's indexed log store with per-tenant retention and optional fs/s3 archiving, explorable under the otel-logs source

Because the first two transports keep logs in the OS-native format, the aggregated data remains readable by the platform's own tools (journalctl, Event Viewer) and by SIEM agents on the aggregation point.

Journal centralization with systemd-journald

Journal centralization points are built with systemd-journal-remote (on the centralization point) and systemd-journal-upload (on the production systems):

A Netdata running at the logs centralization point will automatically detect and present the logs of all servers aggregated to it in a unified way (i.e., logs from all servers multiplexed in the same view). This Netdata may or may not be a Netdata Parent for metrics.

note

The logs centralization points and the metrics centralization points do not need to be the same. For clarity and simplicity, however, when not otherwise required for operational or regulatory reasons, we recommend to have unified centralization points for both metrics and logs.

Centralization does not have to be infrastructure-wide

A centralization point can cover any slice of your estate, and different slices can use different technologies:

  • Per environment, team, or datacenter — one aggregation point each, sized for its own volume and retention needs.
  • Mixed distributed and aggregated nodes — sensitive systems keep logs only locally; the rest forward to a shared point.
  • Mixed transports — Linux servers push journals to a journal aggregation point, Windows servers forward events with WEF to a Windows aggregation point, and applications ship OpenTelemetry logs to a Netdata OTLP endpoint.

Every node and every aggregation point is a first-class citizen in Netdata Cloud: one dashboard, one role-based access model, one place to pick what to explore.

How logs are unified across points

Netdata Cloud unifies access, not the log streams: you open the Logs tab, select one node or aggregation point, and the query runs on that machine's data. An aggregation point already multiplexes its senders into one view, so decide where each system's logs converge, then select that point.

Choosing between journal centralization and OpenTelemetry

  • Journal and event centralization applies when your environment already aggregates journals or Windows events, or when you decide to aggregate them so the data stays in the OS-native format — for SIEM ingestion, compliance tooling, or the platform's own tools. Netdata on the aggregation point manages that data as it is.
  • OpenTelemetry is the way to centralize logs into Netdata's own log store, with per-tenant retention policies and object-storage archiving. It also covers platforms and sources the OS mechanisms do not (macOS, network device syslog, application pipelines).

Both can feed the same Netdata Agent and appear side by side in the Logs tab.


Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.