Our users are world wide though mostly US and Canada. But the times I am quoting are the times I am seeing here in Austin, Tx so just down the road from your servers.
Here is the code I am using:
var ravenClient = new RavenClient("https://HEX1:HEX2@app.getsentry.com/NUM1");
var sentryEvent = new SentryEvent((Exception)ExceptionObject);
sentryEvent.Tags.Add("version", GetVersion());
var result = await ravenClient.CaptureAsync(sentryEvent);
I replaced what I assume are values specific to my company / project with fake entires HEX1, HEX2, & NUM1, but the real URL I am using comes directly out of the C# code sample provided in Project Settings -> Data -> Error Tracking -> C# section of the dashboard. When I debug this code almost all of the time is spent on the last line doing the actual sending. I am using v2.2.0 of SharpRaven which appears to be the lastest version of that library. Any ideas what I am doing wrong?