first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,21 @@
import Domain = require('./Domain');
import DataPoint = require('./DataPoint');
/**
* An instance of the Metric item is a list of measurements (single data points) and/or aggregations.
*/
declare class MetricData extends Domain {
/**
* Schema version
*/
ver: number;
/**
* 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.
*/
metrics: DataPoint[];
/**
* Collection of custom properties.
*/
properties: any;
constructor();
}
export = MetricData;