applicationinsights
Version:
Microsoft Application Insights module for Node.js
41 lines (40 loc) • 1.03 kB
TypeScript
import DataPointType = require("./DataPointType");
/**
* Metric data single measurement.
*/
declare class DataPoint {
/**
* Name of the metric.
*/
name: string;
/**
* Namespace of the metric.
*/
ns: 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;