Metric data single measurement.

interface IDataPoint {
    count: number;
    kind: DataPointType;
    max: number;
    min: number;
    name: string;
    stdDev: number;
    value: number;
}

Implemented by

Properties

count: number

Metric weight of the aggregated metric. Should not be set for a measurement.

Metric type. Single measurement or the aggregated value.

max: number

Maximum value of the aggregated metric. Should not be set for a measurement.

min: number

Minimum value of the aggregated metric. Should not be set for a measurement.

name: string

Name of the metric.

stdDev: number

Standard deviation of the aggregated metric. Should not be set for a measurement.

value: number

Single value for measurement. Sum of individual measurements for the aggregation.