-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3968458
commit a9e8acd
Showing
18 changed files
with
322 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
using Sentry.Extensibility; | ||
using Sentry.Infrastructure; | ||
using Sentry.Internal.Http; | ||
using Sentry.Protocol.Envelopes; | ||
|
||
namespace Sentry.Http; | ||
|
||
internal class SpotlightHttpTransport : HttpTransport | ||
{ | ||
private readonly ITransport _inner; | ||
private readonly SentryOptions _options; | ||
private readonly HttpClient _httpClient; | ||
private readonly Uri _spotlightUrl; | ||
private readonly ISystemClock _clock; | ||
|
||
public SpotlightHttpTransport(ITransport inner, SentryOptions options, HttpClient httpClient, Uri spotlightUrl, ISystemClock clock) | ||
: base(options, httpClient) | ||
{ | ||
_options = options; | ||
_httpClient = httpClient; | ||
_spotlightUrl = spotlightUrl; | ||
_inner = inner; | ||
_clock = clock; | ||
} | ||
|
||
protected internal override HttpRequestMessage CreateRequest(Envelope envelope) | ||
{ | ||
return new HttpRequestMessage | ||
{ | ||
RequestUri = _spotlightUrl, | ||
Method = HttpMethod.Post, | ||
Content = new EnvelopeHttpContent(envelope, _options.DiagnosticLogger, _clock) | ||
{ Headers = { ContentType = MediaTypeHeaderValue.Parse("application/x-sentry-envelope") } } | ||
}; | ||
} | ||
|
||
public override async Task SendEnvelopeAsync(Envelope envelope, CancellationToken cancellationToken = default) | ||
{ | ||
var sentryTask = _inner.SendEnvelopeAsync(envelope, cancellationToken); | ||
|
||
try | ||
{ | ||
// Send to spotlight | ||
using var processedEnvelope = ProcessEnvelope(envelope); | ||
if (processedEnvelope.Items.Count > 0) | ||
{ | ||
using var request = CreateRequest(processedEnvelope); | ||
using var response = await _httpClient.SendAsync(request, cancellationToken).ConfigureAwait(false); | ||
await HandleResponseAsync(response, processedEnvelope, cancellationToken).ConfigureAwait(false); | ||
} | ||
} | ||
catch (Exception e) | ||
{ | ||
_options.LogError(e, "Failed sending envelope to Spotlight."); | ||
} | ||
|
||
// await the Sentry request before returning | ||
await sentryTask.ConfigureAwait(false); | ||
} | ||
} |
Oops, something went wrong.