Files
starface-outlook-sync-addin/node_modules/applicationinsights/out/Declarations/Contracts/Generated/DataPoint.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

37 lines
965 B
TypeScript

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;