Questions tagged [raygun]

Automatic error tracking and crash reporting - raygun.io

Raygun notifies you when errors occur in your app with intelligent grouping and the complete stack trace in real time.

Whether your code is running in a data center or on a million mobile devices, Raygun gives you the data you need to fix bugs fast.

38 questions
0
votes
1 answer

Why is $ in url causing a 'potentially dangerous Request' error

I have a dollar symbol in a URL, which works when I click on the link, like this: www.mysite.com/articles/a-url-with-a-$-symbol However, Raygun is showing some users are receiving an error for this page, with the $ replaced by a &: Message: A…
Karl Gjertsen
  • 4,690
  • 8
  • 41
  • 64
0
votes
2 answers

Get parameter value from method in another class

What I'm trying to achieve is, using Raygun (a crash reporting service), send the user details of the user who experienced the issue. I originally tried using a method similar to this to get the username: Authentication authentication =…
Cale
  • 117
  • 1
  • 3
  • 18
0
votes
0 answers

Use Raygun4Net in IIS site with sub application

We have an IIS site (running on Windows Server 2012R2) which uses Raygun4Net for exception logging. As Raygun suggest, the logging is done from within the Application_Error handler in Global asax: Sub Application_Error(ByVal sender As Object, ByVal…
JamieS
  • 307
  • 2
  • 13
0
votes
1 answer

Unable to send exception data to Raygun through the rails app and rake test task. Works through Rails Console

I am unable to send exception data to Raygun through the Rails App and the Rake Test task on our staging environment. The sending of exception data works through the Rails Console though. Raygun.rb Raygun.setup do |config| config.api_key = [Key] …
Binu
  • 5
  • 2
0
votes
1 answer

Can Raygun be set up to report all uncaught exceptions in an Azure worker role?

Can Raygun be used to report uncaught exceptions in an Azure worker role? Or do caught exceptions have to be sent to Raygun manually? I have added the following lines to my app.config
Dan O'Leary
  • 2,660
  • 6
  • 24
  • 50
0
votes
1 answer

Android support design library vs. raygun

I have an app that uses Raygun. This is giving me problems when I try to update the com.android.support:design library. They works fine when I use com.android.support:design:22.2.0, but when I go up to com.android.support:design:23.+ I get a series…
KairisCharm
  • 1,363
  • 1
  • 13
  • 32
0
votes
1 answer

Angular: Can I ensure that my logging module gets configured before $exceptionHandler under normal circumstances?

I'm writing an error-logging module to add Raygun logging to an AngularJS application. The standard method is to register a decorator for $exceptionHandler like so: $provide.decorator("$exceptionHandler", ['$delegate', function($delegate) { …
Matt Olson
  • 409
  • 5
  • 13
0
votes
1 answer

How to extend error handling code in Orchard?

I am trying to add error-tracking service Raygun to Orchard, however I am not sure how to intercept exception thrown by the application. In the default ASP.NET MVC it is usually done through Application_Error() in Global.asax.cs, is there a way to…
1 2
3