An instance of the Metric item is a list of measurements (single data points) and/or aggregations.

interface IMetricData {
    measurements: any;
    metrics: IDataPoint[];
    properties: any;
    ver: number;
}

Hierarchy (view full)

Implemented by

Properties

measurements: any

Collection of custom measurements.

metrics: IDataPoint[]

List of metrics. Only one metric in the list is currently supported by Application Insights storage. If multiple data points were sent only the first one will be used.

properties: any

Collection of custom properties.

ver: number

Schema version