/** 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. */
9
metrics?: MetricPointTelemetry[];
10
}
11
exportinterface MetricPointTelemetry {
12
/**
13
* A string that identifies the metric.
14
*/
15
name: string;
16
/**
17
* The value of the metric
18
*/
19
value: number;
20
/**
21
* A string that identifies the metric namespace.
22
*/
23
namespace?: string;
24
/**
25
* Type of metric being sent, e.g. Pre-agg metrics have kind=Aggregation