-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
SentryClient.cs
470 lines (399 loc) · 15.9 KB
/
SentryClient.cs
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
using Sentry.Extensibility;
using Sentry.Internal;
using Sentry.Protocol.Envelopes;
namespace Sentry;
/// <summary>
/// Sentry client used to send events to Sentry.
/// </summary>
/// <remarks>
/// This client captures events by queueing those to its
/// internal background worker which sends events to Sentry.
/// </remarks>
/// <inheritdoc cref="ISentryClient" />
/// <inheritdoc cref="IDisposable" />
public class SentryClient : ISentryClient, IDisposable
{
private readonly SentryOptions _options;
private readonly ISessionManager _sessionManager;
private readonly RandomValuesFactory _randomValuesFactory;
private readonly Enricher _enricher;
internal IBackgroundWorker Worker { get; }
internal SentryOptions Options => _options;
/// <summary>
/// Whether the client is enabled.
/// </summary>
/// <inheritdoc />
public bool IsEnabled => true;
/// <summary>
/// Creates a new instance of <see cref="SentryClient"/>.
/// </summary>
/// <param name="options">The configuration for this client.</param>
public SentryClient(SentryOptions options)
: this(options, null, null, null) { }
internal SentryClient(
SentryOptions options,
IBackgroundWorker? worker = null,
RandomValuesFactory? randomValuesFactory = null,
ISessionManager? sessionManager = null)
{
_options = options ?? throw new ArgumentNullException(nameof(options));
_randomValuesFactory = randomValuesFactory ?? new SynchronizedRandomValuesFactory();
_sessionManager = sessionManager ?? new GlobalSessionManager(options);
_enricher = new Enricher(options);
options.SetupLogging(); // Only relevant if this client wasn't created as a result of calling Init
if (worker == null)
{
var composer = new SdkComposer(options);
Worker = composer.CreateBackgroundWorker();
}
else
{
options.LogDebug("Worker of type {0} was provided via Options.", worker.GetType().Name);
Worker = worker;
}
}
/// <inheritdoc />
public SentryId CaptureEvent(SentryEvent? @event, Scope? scope = null, SentryHint? hint = null)
{
if (@event == null)
{
return SentryId.Empty;
}
try
{
return DoSendEvent(@event, hint, scope);
}
catch (Exception e)
{
_options.LogError(e, "An error occurred when capturing the event {0}.", @event.EventId);
return SentryId.Empty;
}
}
/// <inheritdoc />
public void CaptureUserFeedback(UserFeedback userFeedback)
{
if (userFeedback.EventId.Equals(SentryId.Empty))
{
// Ignore the user feedback if EventId is empty
_options.LogWarning("User feedback dropped due to empty id.");
return;
}
CaptureEnvelope(Envelope.FromUserFeedback(userFeedback));
}
/// <inheritdoc />
public void CaptureTransaction(SentryTransaction transaction) => CaptureTransaction(transaction, null, null);
/// <inheritdoc />
public void CaptureTransaction(SentryTransaction transaction, Scope? scope, SentryHint? hint)
{
if (transaction.SpanId.Equals(SpanId.Empty))
{
_options.LogWarning("Transaction dropped due to empty id.");
return;
}
if (string.IsNullOrWhiteSpace(transaction.Name) ||
string.IsNullOrWhiteSpace(transaction.Operation))
{
_options.LogWarning("Transaction discarded due to one or more required fields missing.");
return;
}
// Unfinished transaction can only happen if the user calls this method instead of
// transaction.Finish().
// We still send these transactions over, but warn the user not to do it.
if (!transaction.IsFinished)
{
_options.LogWarning("Capturing a transaction which has not been finished. " +
"Please call transaction.Finish() instead of hub.CaptureTransaction(transaction) " +
"to properly finalize the transaction and send it to Sentry.");
}
// Sampling decision MUST have been made at this point
Debug.Assert(transaction.IsSampled is not null, "Attempt to capture transaction without sampling decision.");
if (transaction.IsSampled is false)
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.SampleRate, DataCategory.Transaction);
_options.LogDebug("Transaction dropped by sampling.");
return;
}
scope ??= new Scope(_options);
hint ??= new SentryHint();
hint.AddAttachmentsFromScope(scope);
_options.LogInfo("Capturing transaction.");
scope.Evaluate();
scope.Apply(transaction);
_enricher.Apply(transaction);
var processedTransaction = transaction;
foreach (var processor in scope.GetAllTransactionProcessors())
{
processedTransaction = processor.DoProcessTransaction(transaction, hint);
if (processedTransaction == null) // Rejected transaction
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.EventProcessor, DataCategory.Transaction);
_options.LogInfo("Event dropped by processor {0}", processor.GetType().Name);
return;
}
}
processedTransaction = BeforeSendTransaction(processedTransaction, hint);
if (processedTransaction is null) // Rejected transaction
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.BeforeSend, DataCategory.Transaction);
_options.LogInfo("Transaction dropped by BeforeSendTransaction callback.");
return;
}
if (!_options.SendDefaultPii)
{
processedTransaction.Redact();
}
CaptureEnvelope(Envelope.FromTransaction(processedTransaction));
}
private SentryTransaction? BeforeSendTransaction(SentryTransaction transaction, SentryHint hint)
{
if (_options.BeforeSendTransactionInternal is null)
{
return transaction;
}
_options.LogDebug("Calling the BeforeSendTransaction callback");
try
{
return _options.BeforeSendTransactionInternal?.Invoke(transaction, hint);
}
catch (Exception e)
{
if (!AotHelper.IsNativeAot)
{
// Attempt to demystify exceptions before adding them as breadcrumbs.
e.Demystify();
}
_options.LogError(e, "The BeforeSendTransaction callback threw an exception. It will be added as breadcrumb and continue.");
var data = new Dictionary<string, string>
{
{"message", e.Message}
};
if (e.StackTrace is not null)
{
data.Add("stackTrace", e.StackTrace);
}
transaction.AddBreadcrumb(
message: "BeforeSendTransaction callback failed.",
category: "SentryClient",
data: data,
level: BreadcrumbLevel.Error);
}
return transaction;
}
/// <inheritdoc />
public void CaptureSession(SessionUpdate sessionUpdate)
=> CaptureEnvelope(Envelope.FromSession(sessionUpdate));
/// <inheritdoc />
public SentryId CaptureCheckIn(
string monitorSlug,
CheckInStatus status,
SentryId? sentryId = null,
TimeSpan? duration = null,
Scope? scope = null,
Action<SentryMonitorOptions>? configureMonitorOptions = null)
{
scope ??= new Scope(_options);
var traceId = scope.PropagationContext.TraceId;
if (scope.Span is not null)
{
// Overwrite the traceId if there is a span active
traceId = scope.Span.TraceId;
}
var checkIn = new SentryCheckIn(monitorSlug, status, sentryId)
{
Duration = duration,
TraceId = traceId,
};
if (configureMonitorOptions is not null)
{
var monitorOptions = new SentryMonitorOptions();
configureMonitorOptions.Invoke(monitorOptions);
checkIn.MonitorOptions = monitorOptions;
}
_enricher.Apply(checkIn);
return CaptureEnvelope(Envelope.FromCheckIn(checkIn))
? checkIn.Id
: SentryId.Empty;
}
/// <summary>
/// Flushes events asynchronously.
/// </summary>
/// <param name="timeout">How long to wait for flush to finish.</param>
/// <returns>A task to await for the flush operation.</returns>
public Task FlushAsync(TimeSpan timeout) => Worker.FlushAsync(timeout);
// TODO: this method needs to be refactored, it's really hard to analyze nullability
private SentryId DoSendEvent(SentryEvent @event, SentryHint? hint, Scope? scope)
{
var filteredExceptions = ApplyExceptionFilters(@event.Exception);
if (filteredExceptions?.Count > 0)
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.EventProcessor, DataCategory.Error);
_options.LogInfo("Event was dropped by one or more exception filters for exception(s): {0}",
string.Join(", ", filteredExceptions.Select(e => e.GetType()).Distinct()));
return SentryId.Empty;
}
scope ??= new Scope(_options);
hint ??= new SentryHint();
hint.AddAttachmentsFromScope(scope);
_options.LogInfo("Capturing event.");
// Evaluate and copy before invoking the callback
scope.Evaluate();
scope.Apply(@event);
if (scope.Level != null)
{
// Level on scope takes precedence over the one on event
_options.LogInfo("Overriding level set on event '{0}' with level set on scope '{1}'.", @event.Level, scope.Level);
@event.Level = scope.Level;
}
if (@event.Exception != null)
{
// Depends on Options instead of the processors to allow application adding new processors
// after the SDK is initialized. Useful for example once a DI container is up
foreach (var processor in scope.GetAllExceptionProcessors())
{
processor.Process(@event.Exception, @event);
// NOTE: Exception processors can't drop events, but exception filters (above) can.
}
}
var processedEvent = @event;
foreach (var processor in scope.GetAllEventProcessors())
{
processedEvent = processor.DoProcessEvent(processedEvent, hint);
if (processedEvent == null)
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.EventProcessor, DataCategory.Error);
_options.LogInfo("Event dropped by processor {0}", processor.GetType().Name);
return SentryId.Empty;
}
}
processedEvent = BeforeSend(processedEvent, hint);
if (processedEvent == null) // Rejected event
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.BeforeSend, DataCategory.Error);
_options.LogInfo("Event dropped by BeforeSend callback.");
return SentryId.Empty;
}
var hasTerminalException = processedEvent.HasTerminalException();
if (hasTerminalException)
{
// Event contains a terminal exception -> end session as crashed
_options.LogDebug("Ending session as Crashed, due to unhandled exception.");
scope.SessionUpdate = _sessionManager.EndSession(SessionEndStatus.Crashed);
}
else if (processedEvent.HasException())
{
// Event contains a non-terminal exception -> report error
// (this might return null if the session has already reported errors before)
scope.SessionUpdate = _sessionManager.ReportError();
}
if (_options.SampleRate != null)
{
if (!_randomValuesFactory.NextBool(_options.SampleRate.Value))
{
_options.ClientReportRecorder.RecordDiscardedEvent(DiscardReason.SampleRate, DataCategory.Error);
_options.LogDebug("Event sampled.");
return SentryId.Empty;
}
}
else
{
_options.LogDebug("Event not sampled.");
}
if (!_options.SendDefaultPii)
{
processedEvent.Redact();
}
var attachments = hint.Attachments.ToList();
var envelope = Envelope.FromEvent(processedEvent, _options.DiagnosticLogger, attachments, scope.SessionUpdate);
return CaptureEnvelope(envelope) ? processedEvent.EventId : SentryId.Empty;
}
private IReadOnlyCollection<Exception>? ApplyExceptionFilters(Exception? exception)
{
var filters = _options.ExceptionFilters;
if (exception == null || filters == null || filters.Count == 0)
{
// There was nothing to filter.
return null;
}
if (filters.Any(f => f.Filter(exception)))
{
// The event should be filtered based on the given exception
return new[] { exception };
}
if (exception is AggregateException aggregate)
{
// Flatten the tree of aggregates such that all the inner exceptions are non-aggregates.
var innerExceptions = aggregate.Flatten().InnerExceptions;
if (innerExceptions.All(e => ApplyExceptionFilters(e) != null))
{
// All inner exceptions matched a filter, so the event should be filtered.
return innerExceptions;
}
}
// The event should not be filtered.
return null;
}
/// <inheritdoc cref="ISentryClient.CaptureEnvelope"/>
public bool CaptureEnvelope(Envelope envelope)
{
if (Worker.EnqueueEnvelope(envelope))
{
_options.LogInfo("Envelope queued up: '{0}'", envelope.TryGetEventId(_options.DiagnosticLogger));
return true;
}
_options.LogWarning(
"The attempt to queue the event failed. Items in queue: {0}",
Worker.QueuedItems);
return false;
}
private SentryEvent? BeforeSend(SentryEvent? @event, SentryHint hint)
{
if (_options.BeforeSendInternal == null)
{
return @event;
}
_options.LogDebug("Calling the BeforeSend callback");
try
{
@event = _options.BeforeSendInternal?.Invoke(@event!, hint);
}
catch (Exception e)
{
if (!AotHelper.IsNativeAot)
{
// Attempt to demystify exceptions before adding them as breadcrumbs.
e.Demystify();
}
_options.LogError(e, "The BeforeSend callback threw an exception. It will be added as breadcrumb and continue.");
var data = new Dictionary<string, string>
{
{"message", e.Message}
};
if (e.StackTrace is not null)
{
data.Add("stackTrace", e.StackTrace);
}
@event?.AddBreadcrumb(
"BeforeSend callback failed.",
category: "SentryClient",
data: data,
level: BreadcrumbLevel.Error);
}
return @event;
}
/// <summary>
/// Disposes this client
/// </summary>
public void Dispose()
{
_options.LogDebug("Flushing SentryClient.");
try
{
// Worker should empty its queue until SentryOptions.ShutdownTimeout
Worker.FlushAsync(_options.ShutdownTimeout).ConfigureAwait(false).GetAwaiter().GetResult();
}
catch
{
_options.LogDebug("Failed to wait on worker to flush");
}
}
}