⏱️ AggregationTemporality defines how a metric aggregator reports aggregated values.
This determines whether metric values are cumulative (total since start) or
delta (change since last report). Critical for proper metric interpretation!
Example
// Cumulative counter - reports total since start constcumulativeCounter = { aggregationTemporality:AggregationTemporality.CUMULATIVE, // Value: 100 (total blocks mined since turtle started) };
// Delta counter - reports change since last report constdeltaCounter = { aggregationTemporality:AggregationTemporality.DELTA, // Value: 5 (blocks mined in the last minute) };
⏱️ AggregationTemporality defines how a metric aggregator reports aggregated values.
This determines whether metric values are cumulative (total since start) or delta (change since last report). Critical for proper metric interpretation!
Example