-
-
Notifications
You must be signed in to change notification settings - Fork 155
2.3.54 Satellite Netdata
av edited this page Dec 13, 2025
·
1 revision
Handle:
netdata
URL: http://localhost:34551

Real-time infrastructure monitoring and troubleshooting. Netdata collects thousands of metrics from systems, hardware, containers, and applications with zero configuration. It provides beautiful, interactive, real-time dashboards with per-second granularity.
# [Optional] Pre-pull the Netdata image
harbor pull netdata
# Start the service
harbor up netdata --openFollowing options can be set via harbor config:
# Port for Netdata web UI
HARBOR_NETDATA_HOST_PORT 34551
# Docker image
HARBOR_NETDATA_IMAGE netdata/netdata
HARBOR_NETDATA_VERSION stable
# Workspace for persistent data
HARBOR_NETDATA_WORKSPACE ./netdataNetdata requires extensive access to host resources for monitoring:
| Path | Purpose |
|---|---|
./netdata/config |
Netdata configuration files |
./netdata/lib |
Persistent library data |
./netdata/cache |
Cache for metrics |
/ |
Host filesystem (read-only, for disk monitoring) |
/proc |
Process information |
/sys |
System information |
/var/log |
Log files |
/var/run/docker.sock |
Docker container monitoring |
Netdata runs with elevated privileges for comprehensive monitoring:
-
pid: host- Access to host PID namespace for process monitoring -
SYS_PTRACE- Required for process tracing -
SYS_ADMIN- Required for cgroup and network monitoring -
apparmor:unconfined- Disabled AppArmor for full access
These capabilities are required for Netdata's core functionality. If you need a more restricted setup, consider running Netdata directly on the host instead.
After starting the service, you can edit the configuration by:
- Placing custom config files in
$(harbor home)/netdata/config/netdata.conf - Using built-in
edit-configscript inside the container:
# Access the container
harbor exec netdata bash
# Edit configuration
cd /etc/netdata
./edit-config netdata.conf
# After editing, restart the service
harbor restart netdata| Tag | Description |
|---|---|
stable |
Most recently published stable build |
edge |
Most recently published nightly build |
latest |
Most recent build (stable or nightly) |
vX.Y.Z |
Specific version (e.g., v1.40.0) |