-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathIExceptionTelemetry.ts
119 lines (101 loc) · 2.63 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
// 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 Please use the `exception` field instead. The behavior and usage of `exception` remains the same as this field.
* Unique guid identifying this error.
*/
error?: Error;
/**
* @description Error Object(s)
*/
exception?: Error | IAutoExceptionTelemetry;
/**
* @description Specified severity of exception for use with
* telemetry filtering in dashboard
*/
severityLevel?: SeverityLevel | number;
}
/**
* @description window.onerror function parameters
* @export
* @interface IAutoExceptionTelemetry
*/
export interface IAutoExceptionTelemetry {
/**
* @description error message. Available as event in HTML onerror="" handler
*/
message: string;
/**
* @description URL of the script where the error was raised
*/
url: string;
/**
* @description Line number where error was raised
*/
lineNumber: number;
/**
* @description Column number for the line where the error occurred
*/
columnNumber: number;
/**
* @description Error Object (object)
*/
error: any;
/**
* @description The event at the time of the exception (object)
*/
evt?: Event|string;
/**
* @description The provided stack for the error
*/
stackDetails?: IStackDetails;
/**
* @description The calculated type of the error
*/
typeName?: string;
/**
* @description The descriptive source of the error
*/
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[],
}