Netdata · Schema
Netdata Node
A Netdata monitoring node (agent instance)
MonitoringObservabilityInfrastructureMetricsAlertsReal-TimeAPMDevOps
Properties
| Name | Type | Description |
|---|---|---|
| node_id | string | Unique node UUID |
| claim_id | string | Claim ID for Netdata Cloud association |
| hostname | string | Node hostname |
| hops | integer | Network hops from Cloud (0 = direct) |
| reachable | boolean | Whether the node is currently reachable |
| version | string | Netdata agent version |
| os | string | Operating system name |
| os_name | string | OS display name |
| os_version | string | OS version string |
| kernel_name | string | Kernel name |
| kernel_version | string | Kernel version |
| architecture | string | CPU architecture |
| cpus | integer | Number of CPU cores |
| memory | integer | Total memory in bytes |
| disk_space | integer | Total disk space in bytes |
| timezone | string | System timezone |
| last_seen | integer | Unix timestamp last seen by Cloud |
| created_at | integer | Unix timestamp node was first seen |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/netdata/main/json-schema/netdata-node-schema.json",
"title": "Netdata Node",
"description": "A Netdata monitoring node (agent instance)",
"type": "object",
"properties": {
"node_id": {
"type": "string",
"description": "Unique node UUID"
},
"claim_id": {
"type": "string",
"description": "Claim ID for Netdata Cloud association"
},
"hostname": {
"type": "string",
"description": "Node hostname"
},
"hops": {
"type": "integer",
"description": "Network hops from Cloud (0 = direct)"
},
"reachable": {
"type": "boolean",
"description": "Whether the node is currently reachable"
},
"version": {
"type": "string",
"description": "Netdata agent version"
},
"os": {
"type": "string",
"description": "Operating system name"
},
"os_name": {
"type": "string",
"description": "OS display name"
},
"os_version": {
"type": "string",
"description": "OS version string"
},
"kernel_name": {
"type": "string",
"description": "Kernel name"
},
"kernel_version": {
"type": "string",
"description": "Kernel version"
},
"architecture": {
"type": "string",
"description": "CPU architecture"
},
"cpus": {
"type": "integer",
"description": "Number of CPU cores"
},
"memory": {
"type": "integer",
"description": "Total memory in bytes"
},
"disk_space": {
"type": "integer",
"description": "Total disk space in bytes"
},
"timezone": {
"type": "string",
"description": "System timezone"
},
"last_seen": {
"type": "integer",
"description": "Unix timestamp last seen by Cloud"
},
"created_at": {
"type": "integer",
"description": "Unix timestamp node was first seen"
}
},
"required": [
"node_id",
"hostname",
"reachable"
]
}