first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 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;