AggregationEvent
AggregationEvent is a type of derived or synthesized event used in data processing systems to summarize a set of input events within a defined window. It represents the result of applying an aggregation function, such as sum, average, count, min, or max, to a collection of raw events grouped by one or more keys.
A typical AggregationEvent carries metadata about its origin and scope. Common fields include the metric or
In stream processing and analytics architectures, AggregationEvents are generated by windowed computations. They can be produced
Common use cases include time-series dashboards, telemetry and monitoring, and business metrics. Examples include a daily
See also: raw events, derived events, windowing, stream processing, and time-series analytics.