Aggregation is a computation where the values of multiple rows are grouped together to form a single summary value.
XMPro provides a convenient Transformation that can be used to achieve this easily in a Data Stream. The Agent allows you to aggregate a set of data (e.g. average, min, max, etc) on a window of time.
This is useful when your data consists of individual events that should be aggregated. The Agent will use a window to buffer these events, group by the specified column(s), and perform the aggregations so that the outgoing payload is a single event per identifier.
Details for an exampleand its configuration can be found in the How to Use section.