| 1588 | ) |
| 1589 | |
| 1590 | type SimpleAggregator struct { |
| 1591 | ss SeriesSet |
| 1592 | exemplarBuckets bucketSet |
| 1593 | intervalMapper IntervalMapper |
| 1594 | aggregationFunc func(existingValue float64, newValue float64) float64 |
| 1595 | initWithNaN bool |
| 1596 | } |
| 1597 | |
| 1598 | func NewSimpleCombiner(req *tempopb.QueryRangeRequest, op SimpleAggregationOp) *SimpleAggregator { |
| 1599 | var initWithNaN bool |
nothing calls this directly
no outgoing calls
no test coverage detected