Node Identities
What You'll Learn
How Netdata identifies nodes across Agents, Parents, and Cloud - and why each identity type matters for your infrastructure.
Netdata uses several identity mechanisms to uniquely identify nodes, authenticate connections, and track metrics across your infrastructure. Understanding these identities is essential when:
- Creating VM templates or golden images
- Troubleshooting connection issues
- Moving nodes between Spaces
- Setting up Parent-Child streaming
- Configuring virtual nodes for remote monitoring
Agent Self Identity
Every Netdata Agent has a Machine GUID - a UUID that uniquely identifies this specific node.
| Property | Value |
|---|---|
| File | /var/lib/netdata/registry/netdata.public.unique.id |
| Format | UUID (e.g., a1b2c3d4-e5f6-7890-abcd-ef1234567890) |
| Generated | On first start, if missing |
| Persistence | Permanent - never changes once created |
Generation Behavior
On startup, Netdata determines the Machine GUID:
- Read from primary file (
netdata.public.unique.id) - If missing/invalid, read from status file backup
- If still missing, generate new random UUID
- Save to primary file with timestamp
Status File Backups
The Machine GUID is also stored in status files for crash recovery:
| Location | Purpose |
|---|---|
/var/lib/netdata/status-netdata.json | Primary backup |
/var/cache/netdata/status-netdata.json | Fallback 1 |
/tmp/status-netdata.json | Fallback 2 |
/run/status-netdata.json | Fallback 3 |
/var/run/status-netdata.json | Fallback 4 |
Redundant Storage
The Machine GUID is stored redundantly across multiple locations. If the primary file is missing or corrupted, Netdata automatically recovers the GUID from backup locations. This ensures identity persistence across crashes and unexpected shutdowns.
GUID Must Be Unique
If two Agents have the same Machine GUID:
- They cannot connect to the same Parent simultaneously
- Cloud kicks the older connection offline when the second connects
- This causes unstable "flapping" connections
See VM Templates for how to avoid this when cloning VMs.
Parent: Children Identities
When a Netdata Agent operates as a Parent (receiving metrics from Children), it stores metadata about all nodes it has seen.
| Property | Value |
|---|---|
| Database | /var/cache/netdata/netdata-meta.db |
| Table | node_instance |
| Contains | GUIDs of all Children ever connected |
Relationship Between Metadata and Metrics
Each metric in Netdata has a UUID. The metadata database (netdata-meta.db) links these UUIDs to nodes, charts, and dimensions. The dbengine stores metric samples indexed by these UUIDs.
| Component | Purpose |
|---|---|
Metadata (netdata-meta.db) | Links metric UUIDs to node GUIDs, charts, dimensions |
Dbengine (dbengine* directories) | Stores actual metric samples indexed by UUID |
The metadata acts as an index - without it, metric samples in dbengine cannot be associated with their source nodes or chart definitions.
Key Point: Metadata DB Does Not Determine Agent Identity
The metadata database stores information about all nodes (including the Agent itself), but this data exists only to link nodes with their metrics. The Agent's identity is not determined by the database - it comes exclusively from:
- The GUID file
- Status file backups
Multiple Node Identities in Database
When a database contains metadata for multiple nodes (from Children or Virtual Nodes), Netdata:
- Reports all nodes - All known nodes are reported to Netdata Cloud
- Retention persistence - Node entries persist in Cloud until database retention expires (can be years with tiering)
This is normal for Parent nodes receiving data from Children, and for Agents using Virtual Nodes. See VM Templates for implications when cloning VMs.
Virtual Nodes (vnodes)
Virtual Nodes allow Go collectors to report metrics as if they came from separate logical nodes. This is useful for monitoring remote systems, containers, or logical entities that don't run their own Netdata Agent (SNMP devices, cloud provider db instances, etc.).
| Property | Value |
|---|---|
| Directory | /etc/netdata/vnodes/ |
| Format | YAML files (.yaml, .yml, .conf) |
| Identity | User-defined GUID in config file |
Configuration
Each virtual node is defined in a YAML file:
- name: my-remote-server
hostname: remote-server.example.com
guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
labels:
environment: production
datacenter: us-east
| Field | Required | Description |
|---|---|---|
hostname | Yes | Display name shown in dashboards and Cloud |
guid | Yes | UUID that uniquely identifies this virtual node |
name | No | Internal reference name |
labels | No | Key-value pairs for filtering and organization |
GUID Uniqueness
Each virtual node GUID must be unique across your entire infrastructure. Using the same GUID as another node (real or virtual) causes identity conflicts - the same problems as duplicate Machine GUIDs.
How Virtual Nodes Work
- Go collector reads vnode configuration
- Metrics are tagged with the vnode's GUID instead of the Agent's Machine GUID
- Cloud sees the vnode as a separate node in your Space
- Parent nodes store vnode metadata alongside Children metadata
Virtual nodes appear in Netdata Cloud as independent nodes, with their own dashboards and alert states.
Cloud: Node Identity
When an Agent connects to Netdata Cloud, it receives a Node ID that links the Machine GUID to your Space.
| Property | Value |
|---|---|
| Assigned by | Netdata Cloud |
| Stored in | /var/cache/netdata/netdata-meta.db (node_instance table) |
| Purpose | Links Machine GUID to your Cloud Space |
Machine GUIDs and Cloud Node IDs map 1-to-1.
Node Instances
A single Machine GUID can have multiple Node Instances in Cloud when the same node connects through different Parents. Each Parent-node connection creates a separate node instance. Although, Node Instances are critical in metrics routing decisions and alerts deduplication, they are usually not visible to users.
Agent-Cloud Link (ACLK) Identity
The Agent-Cloud Link (ACLK) uses separate credentials for authentication:
| File | Purpose |
|---|---|
/var/lib/netdata/cloud.d/cloud.conf | Cloud configuration, contains claimed_id |
/var/lib/netdata/cloud.d/private.pem | RSA private key |
/var/lib/netdata/cloud.d/public.pem | RSA public key |
Claimed ID
The Claimed ID is a random UUID generated during the claiming process. It's separate from the Machine GUID, as it uniquely identifies the link between the Agent and Cloud.
| Property | Description |
|---|---|
| Purpose | Authenticates the ACLK connection to Netdata Cloud |
| Generated | During the claiming process |
| Independence | Separate from Machine GUID - they can change independently |
| Regeneration | A new Claimed ID is generated each time the agent is re-claimed |
Custom Paths
If you customized [directories] in netdata.conf:
libsetting affects/var/lib/netdata/pathscachesetting affects/var/cache/netdata/paths
FAQ
How do I find my node's Machine GUID?
Read the file /var/lib/netdata/registry/netdata.public.unique.id.
Can I change my node's Machine GUID?
Yes, but it will appear as a new node in Netdata Cloud and Netdata Parents. Delete the GUID file and status backups, then restart Netdata. See VM Templates for the complete procedure.
Why does my node keep going offline/online in Cloud?
Two agents likely have the same Machine GUID. This causes "flapping" as Cloud kicks the older connection when the second connects. Each agent needs a unique GUID.
What's the difference between Machine GUID, Node ID, and Claimed ID?
- Machine GUID: Agent-generated, identifies the node itself, never changes
- Node ID: Cloud-assigned, links the Machine GUID to your Space
- Claimed ID: Agent-generated during claiming, identifies the ACLK connection
Do containers need unique GUIDs?
Containers with ephemeral storage get unique GUIDs automatically on each start. Containers with persistent volumes at /var/lib/netdata/ retain their GUID across restarts.
Can the same node exist in multiple Spaces?
No. A node can only exist in one Space. To move a node to a different Space, unclaim it first, then claim to the new Space.
Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.