Agent Status Telemetry
The Agent Status telemetry captures the agent's operational heartbeat, providing a clear snapshot of runtime health. It reports key metrics such as CPU utilization, memory footprint, cache performance, flow table activity, packet throughput, and overall uptime, all in a single, structured record. These metrics give you immediate insight into how the engine performs under current network conditions.
Requirements
Agent Status telemetry was introduced in the Core Plugin in version 1.0.20. To begin streaming the telemetry:
- Install and configure the Netify Agent
- Install and configure a Sink Plugin for receiving the telemetry
- Install and configure the Core Plugin and add stream-stats to types
- Source
- Core Plugin
- Plugin Release
- 1.0.20
Optimizations
Time-series analysis transforms these records into actionable insights. Early detection of patterns like abnormal CPU growth or cache lag allows teams to preemptively resolve bottlenecks, preserving high-quality detection and total flow visibility.
Attributes
type
stringagent_version
stringbuild_version
stringcpu_cores
integercpu_system
numbercpu_system_prev
numbercpu_user
numbercpu_user_prev
numberdhc_status
booleanfhc_status
booleanflow_count
integerflow_count_prev
integerflows_active
integerflows_expired
integerflows_expiring
integerflows_in_use
integerflows_purged
integermaxrss_kb
integermaxrss_kb_prev
integermemrss_kb
integermemrss_kb_prev
integertcm_kb
integertcm_kb_prev
integertimestamp
integerupdate_imf
integerupdate_interval
integeruptime
integerAgent Status Attributes - Example
{
"agent_version": "5.2.0",
"build_version": "Netify Agent/5.2.0-...",
"cpu_cores": 8,
"cpu_system": 3.148931,
"cpu_system_prev": 3.134846,
"cpu_user": 6.237091,
"cpu_user_prev": 6.206476,
"dhc_status": true,
"fhc_status": true,
"flow_count": 140,
"flow_count_prev": 135,
"flows_active": 55,
"flows_expired": 21,
"flows_expiring": 0,
"flows_in_use": 120,
"flows_purged": 11,
"maxrss_kb": 85504,
"maxrss_kb_prev": 85504,
"memrss_kb": 84508,
"memrss_kb_prev": 84380,
"tcm_kb": 48141,
"tcm_kb_prev": 48076,
"timestamp": 1772661775,
"type": "agent_status",
"update_imf": 1,
"update_interval": 15,
"uptime": 1740
}