This repository was archived by the owner on Jul 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathWebEventSource.cs
More file actions
516 lines (466 loc) · 17.1 KB
/
WebEventSource.cs
File metadata and controls
516 lines (466 loc) · 17.1 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
namespace Microsoft.ApplicationInsights.Web.Implementation
{
using System;
#if NET45
using System.Diagnostics.Tracing;
#endif
/// <summary>
/// ETW EventSource tracing class.
/// </summary>
[EventSource(Name = "Microsoft-ApplicationInsights-Extensibility-Web")]
internal sealed class WebEventSource : EventSource
{
/// <summary>
/// Instance of the PlatformEventSource class.
/// </summary>
public static readonly WebEventSource Log = new WebEventSource();
private WebEventSource()
{
this.ApplicationName = this.GetApplicationName();
}
public string ApplicationName { [NonEvent]get; [NonEvent]private set; }
public bool IsVerboseEnabled
{
[NonEvent]
get
{
return Log.IsEnabled(EventLevel.Verbose, (EventKeywords)(-1));
}
}
[Event(
1,
Message = "ApplicationInsightsHttpModule failed at initialization with exception: {0}",
Level = EventLevel.Error)]
public void WebModuleInitializationExceptionEvent(string excMessage, string appDomainName = "Incorrect")
{
this.WriteEvent(
1,
excMessage ?? string.Empty,
this.ApplicationName);
}
[Event(
2,
Message = "ApplicationInsightsHttpModule failed at {0} with exception: {1}",
Level = EventLevel.Warning)]
public void TraceCallbackFailure(string callbackName, string excMessage, string appDomainName = "Incorrect")
{
this.WriteEvent(
2,
callbackName ?? string.Empty,
excMessage ?? string.Empty,
this.ApplicationName);
}
[Event(
3,
Message = "[msg=WebModuleCallback];[callback={0}];[uri={1}];",
Level = EventLevel.Verbose)]
public void WebModuleCallback(string callback, string uri, string appDomainName = "Incorrect")
{
this.WriteEvent(
3,
callback ?? string.Empty,
uri ?? string.Empty,
this.ApplicationName);
}
[Event(
4,
Message = "[msg=HanderFailure];[exception={0}];",
Level = EventLevel.Error)]
public void HanderFailure(string exception, string appDomainName = "Incorrect")
{
this.WriteEvent(
4,
exception ?? string.Empty,
this.ApplicationName);
}
[Event(
5,
Message = "[msg=UserHostNotCollectedWarning];[exception={0}];",
Level = EventLevel.Warning)]
public void UserHostNotCollectedWarning(string exception, string appDomainName = "Incorrect")
{
this.WriteEvent(
5,
exception ?? string.Empty,
this.ApplicationName);
}
[Event(
8,
Message = "[msg=RequestTelemetryCreated];",
Level = EventLevel.Verbose)]
public void WebTelemetryModuleRequestTelemetryCreated(string appDomainName = "Incorrect")
{
this.WriteEvent(8, this.ApplicationName);
}
[Event(
9,
Message = "[msg=HttpRequestNotAvailable];[msg={0}];[stack={1}];",
Level = EventLevel.Warning)]
public void HttpRequestNotAvailable(string message, string stack, string appDomainName = "Incorrect")
{
this.WriteEvent(9, message, stack, this.ApplicationName);
}
[Event(
10,
Keywords = Keywords.VerboseFailure,
Message = "[msg=WebSessionTrackingSessionCookieIsNotSecifiedInRequest];",
Level = EventLevel.Verbose)]
public void WebSessionTrackingSessionCookieIsNotSecifiedInRequest(string appDomainName = "Incorrect")
{
this.WriteEvent(10, this.ApplicationName);
}
[Event(
11,
Message = "[msg=WebSessionTrackingSessionCookieIsEmptyWarning];",
Level = EventLevel.Warning)]
public void WebSessionTrackingSessionCookieIsEmptyWarning(string appDomainName = "Incorrect")
{
this.WriteEvent(11, this.ApplicationName);
}
[Event(
12,
Message = "[msg=WebUserTrackingUserCookieNotAvailable];",
Level = EventLevel.Verbose)]
public void WebUserTrackingUserCookieNotAvailable(string appDomainName = "Incorrect")
{
this.WriteEvent(12, this.ApplicationName);
}
[Event(
13,
Message = "[msg=WebUserTrackingUserCookieIsEmpty];",
Level = EventLevel.Warning)]
public void WebUserTrackingUserCookieIsEmpty(string appDomainName = "Incorrect")
{
this.WriteEvent(13, this.ApplicationName);
}
[Event(
14,
Message = "[msg=WebUserTrackingUserCookieIsIncomplete];[cookieValue={0}];",
Level = EventLevel.Warning)]
public void WebUserTrackingUserCookieIsIncomplete(
string cookieValue, string appDomainName = "Incorrect")
{
this.WriteEvent(
14,
cookieValue ?? string.Empty,
this.ApplicationName);
}
[Event(
16,
Message = "WebTelemetryInitializerLoaded at {0}",
Level = EventLevel.Verbose)]
public void WebTelemetryInitializerLoaded(
string typeName,
string appDomainName = "Incorrect")
{
this.WriteEvent(
16,
typeName ?? string.Empty,
this.ApplicationName);
}
[Event(
17,
Message = "[msg=WebTelemetryInitializerNotExecutedOnNullHttpContext]",
Level = EventLevel.Verbose)]
public void WebTelemetryInitializerNotExecutedOnNullHttpContext(
string appDomainName = "Incorrect")
{
this.WriteEvent(17, this.ApplicationName);
}
[Event(
18,
Message = "TelemetryInitializer {0} failed to initialize telemetry item {1}",
Level = EventLevel.Error)]
public void WebTelemetryInitializerFailure(
string typeName,
string exception,
string appDomainName = "Incorrect")
{
this.WriteEvent(
18,
typeName ?? string.Empty,
exception ?? string.Empty,
this.ApplicationName);
}
[Event(
19,
Message = "[msg=WebSetLocationIdSkiped];[headerName={0}];",
Level = EventLevel.Verbose)]
public void WebLocationIdHeaderFound(string headerName, string appDomainName = "Incorrect")
{
this.WriteEvent(19, headerName ?? "NULL", this.ApplicationName);
}
[Event(
20,
Message = "[msg=WebSetLocationIdSet];[ip={0}];",
Level = EventLevel.Verbose)]
public void WebLocationIdSet(string ip, string appDomainName = "Incorrect")
{
this.WriteEvent(20, ip ?? "NULL", this.ApplicationName);
}
[Event(
21,
Message = "[msg=WebUriFormatException];",
Level = EventLevel.Warning)]
public void WebUriFormatException(string appDomainName = "Incorrect")
{
this.WriteEvent(21, this.ApplicationName);
}
[Event(
26,
Message = "[msg=AuthIdTrackingCookieNotAvailable];",
Level = EventLevel.Verbose)]
public void AuthIdTrackingCookieNotAvailable(string appDomainName = "Incorrect")
{
this.WriteEvent(26, this.ApplicationName);
}
[Event(
27,
Message = "[msg=AuthIdTrackingCookieIsEmpty];",
Level = EventLevel.Warning)]
public void AuthIdTrackingCookieIsEmpty(string appDomainName = "Incorrect")
{
this.WriteEvent(27, this.ApplicationName);
}
[Event(
28,
Message = "[msg=ThreadAbortWarning];",
Level = EventLevel.Warning)]
public void ThreadAbortWarning(string appDomainName = "Incorrect")
{
this.WriteEvent(
28,
this.ApplicationName);
}
[Event(
29,
Message = "[msg=WebRequestFilteredOutByUserAgent];",
Level = EventLevel.Verbose)]
public void WebRequestFilteredOutByUserAgent(string appDomainName = "Incorrect")
{
this.WriteEvent(
29,
this.ApplicationName);
}
[Event(
30,
Message = "[msg=WebRequestFilteredOutByRequestHandler];",
Level = EventLevel.Verbose)]
public void WebRequestFilteredOutByRequestHandler(string appDomainName = "Incorrect")
{
this.WriteEvent(
30,
this.ApplicationName);
}
[Event(
31,
Keywords = Keywords.UserActionable,
Message = "SyntheticUserAgentTelemetryInitializer failed to parse regular expression {0} with exception: {1}",
Level = EventLevel.Warning)]
public void SyntheticUserAgentTelemetryInitializerRegularExpressionParsingException(string pattern, string exception, string appDomainName = "Incorrect")
{
this.WriteEvent(
31,
pattern,
exception,
this.ApplicationName);
}
[Event(
32,
Message = "FlagCheckFailure {0}.",
Level = EventLevel.Error)]
public void FlagCheckFailure(string excMessage, string appDomainName = "Incorrect")
{
this.WriteEvent(
32,
excMessage ?? string.Empty,
this.ApplicationName);
}
[Event(
33,
Message = "RequestFiltered",
Level = EventLevel.Verbose)]
public void RequestFiltered(string appDomainName = "Incorrect")
{
this.WriteEvent(
33,
this.ApplicationName);
}
[Event(
34,
Message = "[msg=NoHttpContext];",
Level = EventLevel.Warning)]
public void NoHttpContextWarning(string appDomainName = "Incorrect")
{
this.WriteEvent(
34,
this.ApplicationName);
}
[Event(
35,
Message = "Failed to hook onto AddOnSendingHeaders event. Exception {0}",
Level = EventLevel.Warning)]
public void HookAddOnSendingHeadersFailedWarning(string exception, string appDomainName = "Incorrect")
{
this.WriteEvent(
35,
exception,
this.ApplicationName);
}
[Event(
36,
Message = "Failed to add target instrumentation key hash as a response header. Exception {0}",
Level = EventLevel.Warning)]
public void AddTargetHeaderFailedWarning(string exception, string appDomainName = "Incorrect")
{
this.WriteEvent(
36,
exception,
this.ApplicationName);
}
[Event(
37,
Message = "Initialize has not been called on this module yet.",
Level = EventLevel.Error)]
public void InitializeHasNotBeenCalledOnModuleYetError(string appDomainName = "Incorrect")
{
this.WriteEvent(
37,
this.ApplicationName);
}
[Event(
38,
Message = "Initialize has not been called on this module yet.",
Level = EventLevel.Verbose)]
public void InitializeHasNotBeenCalledOnModuleYetVerbose(string appDomainName = "Incorrect")
{
this.WriteEvent(
38,
this.ApplicationName);
}
[Event(
39,
Message = "RequestTrackingTelemetryModule ChildRequestTrackingSuppressionModule Method: '{0}' Unknown Exception: {1}",
Level = EventLevel.Error)]
public void ChildRequestUnknownException(string methodName, string exceptionMessage, string appDomainName = "Incorrect")
{
this.WriteEvent(
39,
methodName,
exceptionMessage,
this.ApplicationName);
}
[Event(
40,
Message = "RequestTrackingTelemetryModule: Request was not logged. Set EventLevel Verbose for more details.",
Level = EventLevel.Informational)]
public void RequestTrackingTelemetryModuleRequestWasNotLoggedInformational(string appDomainName = "Incorrect")
{
this.WriteEvent(
40,
this.ApplicationName);
}
[Event(
41,
Message = "RequestTrackingTelemetryModule: Request was not logged. Request Id: '{0}' Reason: {1}",
Level = EventLevel.Verbose)]
public void RequestTrackingTelemetryModuleRequestWasNotLoggedVerbose(string requestId, string reason, string appDomainName = "Incorrect")
{
this.WriteEvent(
41,
requestId,
reason,
this.ApplicationName);
}
[Event(42,
Keywords = Keywords.Diagnostics,
Message = "Injection started.",
Level = EventLevel.Verbose)]
public void InjectionStarted(string appDomainName = "Incorrect")
{
this.WriteEvent(42, this.ApplicationName);
}
[Event(43,
Keywords = Keywords.Diagnostics,
Message = "{0} Injection failed. Error message: {1}",
Level = EventLevel.Informational)]
public void InjectionFailed(string component, string error, string appDomainName = "Incorrect")
{
this.WriteEvent(43, component ?? string.Empty, error ?? string.Empty, this.ApplicationName);
}
[Event(44,
Keywords = Keywords.Diagnostics,
Message = "Version '{0}' of component '{1}' is not supported",
Level = EventLevel.Verbose)]
public void InjectionVersionNotSupported(string version, string component, string appDomainName = "Incorrect")
{
this.WriteEvent(44, version ?? string.Empty, component ?? string.Empty, this.ApplicationName);
}
[Event(
45,
Keywords = Keywords.Diagnostics,
Message = "Unknown exception. Error message: {0}.",
Level = EventLevel.Error)]
public void InjectionUnknownError(string error, string appDomainName = "Incorrect")
{
this.WriteEvent(45, error ?? string.Empty, this.ApplicationName);
}
[Event(
46,
Keywords = Keywords.Diagnostics,
Message = "Another exception filter or logger is already injected. Type: '{0}', component: '{1}'",
Level = EventLevel.Verbose)]
public void InjectionSkipped(string type, string component, string appDomainName = "Incorrect")
{
this.WriteEvent(46, type ?? string.Empty, component ?? string.Empty, this.ApplicationName);
}
[Event(47,
Keywords = Keywords.Diagnostics,
Message = "Injection completed.",
Level = EventLevel.Verbose)]
public void InjectionCompleted(string appDomainName = "Incorrect")
{
this.WriteEvent(47, this.ApplicationName);
}
[Event(48,
Keywords = Keywords.Diagnostics,
Message = "Activity is null for event = '{0}'",
Level = EventLevel.Error)]
public void ActivityIsNull(string diagnosticsSourceEventName, string appDomainName = "Incorrect")
{
this.WriteEvent(48, diagnosticsSourceEventName, this.ApplicationName);
}
[NonEvent]
private string GetApplicationName()
{
string name;
try
{
name = AppDomain.CurrentDomain.FriendlyName;
}
catch (Exception exp)
{
name = "Undefined " + exp.Message;
}
return name;
}
/// <summary>
/// Keywords for the PlatformEventSource. Those keywords should match keywords in Core.
/// </summary>
public sealed class Keywords
{
/// <summary>
/// Key word for user actionable events.
/// </summary>
public const EventKeywords UserActionable = (EventKeywords)0x1;
/// <summary>
/// Diagnostics tracing keyword.
/// </summary>
public const EventKeywords Diagnostics = (EventKeywords)0x2;
/// <summary>
/// Keyword for errors that trace at Verbose level.
/// </summary>
public const EventKeywords VerboseFailure = (EventKeywords)0x4;
}
}
}