Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
@@ -0,0 +1,36 @@
import DataPointType = require('./DataPointType');
/**
* Metric data single measurement.
*/
declare class DataPoint {
/**
* Name of the metric.
*/
name: string;
/**
* Metric type. Single measurement or the aggregated value.
*/
kind: DataPointType;
/**
* Single value for measurement. Sum of individual measurements for the aggregation.
*/
value: number;
/**
* Metric weight of the aggregated metric. Should not be set for a measurement.
*/
count: number;
/**
* Minimum value of the aggregated metric. Should not be set for a measurement.
*/
min: number;
/**
* Maximum value of the aggregated metric. Should not be set for a measurement.
*/
max: number;
/**
* Standard deviation of the aggregated metric. Should not be set for a measurement.
*/
stdDev: number;
constructor();
}
export = DataPoint;