Aggregator Telemetry - Type 4
The Type 4 Aggregator provides interval-based rollups of traffic statistics with fixed start and end timestamps. It is optimized for periodic reporting pipelines where compact, time-bucketed summaries are preferred over per-flow detail.
Each record contains a stats array with protocol/application dimensions, endpoint context, and upload/download counters for the interval. This format is useful for historical trend analysis, billing-oriented summaries, and destination-focused traffic monitoring.
Data Profile
Dimensions
- Application
- Protocol
- Local IP
- Local MAC
- Other IP
- Other port
- IP protocol
- IP version
- VLAN ID
Metrics
- Download bytes
- Upload bytes
- Packets
Criteria
- Excludes NATed flows
Requirements
- Install and configure the Netify Agent
- Install and configure a Sink Plugin for receiving the telemetry
- Install and configure the Aggregator Plugin
- Set the aggregator property to 4
- Modify the Sink Configuration
- Source
- Aggregator Plugin
- Plugin Release
- 1.0.87
Attributes
Please review the direction conventions documentation for context on local vs other metrics.
Timestamps
log_time_start
integer
log_time_end
integer
Dimensions
stats
array[object]
stats.application_id
integer
stats.protocol_id
integer
stats.ip_protocol
integer
stats.ip_version
integer
stats.other_ip
string
stats.other_port
integer
stats.vlan_id
integer
Metrics
stats.upload
integer
stats.download
integer
stats.packets
integer
Example Data
Unlike other aggregators, Type 4 only supports the flat format.
Aggregator 4 - Flat Mode
{
"log_time_end": 1745002614,
"log_time_start": 1745002604,
"stats": [
{
"application_id": 10909,
"download": 935,
"ip_protocol": 17,
"ip_version": 4,
"other_ip": "142.250.80.14",
"other_port": 443,
"packets": 5,
"protocol_id": 188,
"upload": 748,
"vlan_id": 0
},
...
]
}