Cribl · Schema
EdgeNode
ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the edge node |
| hostname | string | The endpoint hostname |
| group | string | The fleet the node belongs to |
| version | string | The Cribl Edge agent version |
| status | string | The current node status |
| os | string | The operating system of the endpoint |
| cpuUsage | number | Current CPU utilization percentage |
| memUsage | number | Current memory utilization percentage |
| ip | string | The IP address of the endpoint |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EdgeNode",
"title": "EdgeNode",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the edge node"
},
"hostname": {
"type": "string",
"description": "The endpoint hostname"
},
"group": {
"type": "string",
"description": "The fleet the node belongs to"
},
"version": {
"type": "string",
"description": "The Cribl Edge agent version"
},
"status": {
"type": "string",
"description": "The current node status",
"enum": [
"online",
"offline",
"degraded"
]
},
"os": {
"type": "string",
"description": "The operating system of the endpoint"
},
"cpuUsage": {
"type": "number",
"description": "Current CPU utilization percentage",
"format": "float"
},
"memUsage": {
"type": "number",
"description": "Current memory utilization percentage",
"format": "float"
},
"ip": {
"type": "string",
"description": "The IP address of the endpoint"
}
}
}