aggregates property

List<TimeBucket> get aggregates

The down-sampled buckets for evicted history, ordered by start time. Audited: 2026-06-12 11:26 EDT

Implementation

List<TimeBucket> get aggregates =>
    _buckets.values.toList()
      ..sort((TimeBucket a, TimeBucket b) => a.startMs.compareTo(b.startMs));