diff --git a/packages/opentelemetry-metrics/src/export/Aggregator.ts b/packages/opentelemetry-metrics/src/export/Aggregator.ts index f7488b49c4..d8bd4373b9 100644 --- a/packages/opentelemetry-metrics/src/export/Aggregator.ts +++ b/packages/opentelemetry-metrics/src/export/Aggregator.ts @@ -73,6 +73,7 @@ export class MeasureExactAggregator implements Aggregator { this._distribution.sum += value; this._distribution.min = Math.min(this._distribution.min, value); this._distribution.max = Math.max(this._distribution.max, value); + this._lastUpdateTime = hrTime(); } toPoint(): Point {