-
Notifications
You must be signed in to change notification settings - Fork 241
/
IExceptionTelemetry.ts
143 lines (125 loc) · 3.35 KB
/
IExceptionTelemetry.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import { SeverityLevel } from "./Contracts/SeverityLevel";
import { IPartC } from "./IPartC";
/**
* @export
* @interface IExceptionTelemetry
* @description Exception interface used as primary parameter to trackException
*/
export interface IExceptionTelemetry extends IPartC {
/**
* Unique guid identifying this error
*/
id?: string;
/**
* @deprecated
* @type {Error}
* @memberof IExceptionTelemetry
* @description DEPRECATED: Please use exception instead. Behavior/usage for exception remains the same as this field.
*/
error?: Error;
/**
* @type {Error}
* @memberof IExceptionTelemetry
* @description Error Object(s)
*/
exception?: Error | IAutoExceptionTelemetry;
/**
* @description Specified severity of exception for use with
* telemetry filtering in dashboard
* @type {(SeverityLevel | number)}
* @memberof IExceptionTelemetry
*/
severityLevel?: SeverityLevel | number;
}
/**
* @description window.onerror function parameters
* @export
* @interface IAutoExceptionTelemetry
*/
export interface IAutoExceptionTelemetry {
/**
* @description error message. Available as event in HTML onerror="" handler
* @type {string}
* @memberof IAutoExceptionTelemetry
*/
message: string;
/**
* @description URL of the script where the error was raised
* @type {string}
* @memberof IAutoExceptionTelemetry
*/
url: string;
/**
* @description Line number where error was raised
* @type {number}
* @memberof IAutoExceptionTelemetry
*/
lineNumber: number;
/**
* @description Column number for the line where the error occurred
* @type {number}
* @memberof IAutoExceptionTelemetry
*/
columnNumber: number;
/**
* @description Error Object (object)
* @type {any}
* @memberof IAutoExceptionTelemetry
*/
error: any;
/**
* @description The event at the time of the exception (object)
* @type {Event|string}
* @memberof IAutoExceptionTelemetry
*/
evt?: Event|string;
/**
* @description The provided stack for the error
* @type {IStackDetails}
* @memberof IAutoExceptionTelemetry
*/
stackDetails?: IStackDetails;
/**
* @description The calculated type of the error
* @type {string}
* @memberof IAutoExceptionTelemetry
*/
typeName?: string;
/**
* @description The descriptive source of the error
* @type {string}
* @memberof IAutoExceptionTelemetry
*/
errorSrc?: string;
}
export interface IExceptionInternal extends IPartC {
ver: string;
id: string;
exceptions: IExceptionDetailsInternal[];
severityLevel?: SeverityLevel | number;
problemGroup: string;
isManual: boolean;
}
export interface IExceptionDetailsInternal {
id: number;
outerId: number;
typeName: string;
message: string;
hasFullStack: boolean;
stack: string;
parsedStack: IExceptionStackFrameInternal[];
}
export interface IExceptionStackFrameInternal {
level: number;
method: string;
assembly: string;
fileName: string;
line: number;
pos?: number;
}
export interface IStackDetails {
src: string,
obj: string[],
}