You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Event date time when telemetry item was created. This is the wall clock time on the client when the event was generated. There is no guarantee that the client's time is accurate. This field must be formatted in UTC ISO 8601 format, with a trailing 'Z' character, as described publicly on https://en.wikipedia.org/wiki/ISO_8601#UTC. Note: the number of decimal seconds digits provided are variable (and unspecified). Consumers should handle this, i.e. managed code consumers should not use format 'O' for parsing as it specifies a fixed length. Example: 2009-06-15T13:45:30.0000000Z.
25
25
*/
26
-
time: Date;
26
+
time: string;
27
27
/**
28
28
* Sampling rate used in application. This telemetry item represents 1 / sampleRate actual telemetry items.
29
29
*/
@@ -65,9 +65,13 @@ export interface MonitorBase {
65
65
*/
66
66
exportinterfaceMonitorDomain{
67
67
/**
68
-
* Ignored value.
68
+
* Describes unknown properties. The value of an unknown property can be of "any" type.
* Instances of Event represent structured event records that can be grouped and searched by their properties. Event data item also creates a metric of event count by name.
248
248
*/
249
249
exporttypeTelemetryEventData=MonitorDomain&{
250
-
/**
251
-
* Schema version
252
-
*/
253
-
version: number;
254
250
/**
255
251
* Event name. Keep it low cardinality to allow proper grouping and useful metrics.
* Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.
291
+
* Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into instances of this type. The message does not have measurements.
* An instance of the Metric item is a list of measurements (single data points) and/or aggregations.
326
314
*/
327
315
exporttypeMetricsData=MonitorDomain&{
328
-
/**
329
-
* Schema version
330
-
*/
331
-
version: number;
332
316
/**
333
317
* 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.
* An instance of PageViewPerf represents: a page view with no performance data, a page view with performance data, or just the performance data of an earlier page request.
382
362
*/
383
363
exporttypePageViewPerfData=MonitorDomain&{
384
-
/**
385
-
* Schema version
386
-
*/
387
-
version: number;
388
364
/**
389
365
* Identifier of a page view instance. Used for correlation between page view and other telemetry items.
* An instance of PageView represents a generic action on a page like a button click. It is also the base type for PageView.
457
+
* An instance of Request represents completion of an external request to the application to do work and contains a summary of that request execution and the results.
486
458
*/
487
459
exporttypeRequestData=MonitorDomain&{
488
-
/**
489
-
* Schema version
490
-
*/
491
-
version: number;
492
460
/**
493
461
* Identifier of a request call instance. Used for correlation between request and other telemetry items.
0 commit comments