}
/**
- * Measure statistics.
+ * Measurement statistics.
*
* @internal
*/
-export interface MeasureStatistics {
+export interface MeasurementStatistics {
/**
- * Measure aggregation.
+ * Measurement aggregation.
*/
aggregation: number
/**
- * Measure average.
+ * Measurement average.
*/
average: number
/**
- * Measure median.
+ * Measurement median.
*/
median: number
/**
- * Measure history.
+ * Measurement history.
*/
history: CircularArray<number>
}
*
* @internal
*/
-
export interface TaskStatistics {
/**
* Number of tasks executed.
/**
* Tasks runtime statistics.
*/
- runTime: MeasureStatistics
+ runTime: MeasurementStatistics
/**
* Tasks wait time statistics.
*/
- waitTime: MeasureStatistics
+ waitTime: MeasurementStatistics
/**
* Event loop utilization.
*/