Small fixes
A selection of 80 fixes from 174 pull requests.
71.Overlapping metric intervals
Delta values covered the latest interval, but their timestamps kept the first interval’s start. Use the previous collection time for each new delta point.
11const startTime = this.startTimeFor(descriptor.name, intervalStartTime)const startTime = isDelta ? intervalStartTime : this.startTimeFor(descriptor.name, intervalStartTime)