RollbarSharp icon indicating copy to clipboard operation
RollbarSharp copied to clipboard

.NET bindings for the Rollbar.com error reporting service.

Results 15 RollbarSharp issues
Sort by recently updated
recently updated
newest added

Any plans for getting this to support .NET Core? I've already started the process but don't want to run too far down this rabbit hole if someone has already done...

Do you plan to add registering [deploys ](https://rollbar.com/docs/api/deploys/) feature?

Added a (vastly cleaner) static class to handle the main code interaction. Rollbar.SendException(exception) instead of (new RollbarClient()).SendException(exception). The latter can still be used if you need to know when the...

Rollbar.net (https://github.com/rollbar/Rollbar.NET) has an "Enabled" setting which I can switch to false if I want to temporarily disable rollbar. I see nothing like that for rollbarsharp. Is there an easy...

The instruction to use ScriptCs for building seems outdated since I cannot find the build/build.csx file

Some exceptions are causing rollbarsharp exceptions. Have you seen this -> Application: w3wp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.AccessViolationException at...

Not sure how to fix this but this method. ``` csharp private static string IpFromXForwardedFor(HttpRequest request) { var forwardedFor = request.Headers["X-Forwarded-For"]; if (!string.IsNullOrEmpty(forwardedFor) && forwardedFor.Contains(",")) { forwardedFor = forwardedFor.Split(',').Last().Trim(); }...

bug

Per https://rollbar.com/docs/github/ and https://rollbar.com/docs/just-your-code/ > Rollbar is better with GitHub! [...] link your Rollbar stack traces to the code where it happened, resolve items when a particular commit is deployed,...

According to the documentation: ``` public class RollbarExceptionFilter : IExceptionFilter { public void OnException(ExceptionContext filterContext) { if (filterContext.ExceptionHandled) return; (new RollbarClient()).SendException(filterContext.Exception); } } ``` However, IExceptionFilter requires the following methods:...

As you may know, the exception filter stuff doesn't work the same in ASP.NET vNext as far as I can tell. The following steps work there instead. Consider updating the...