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
6
votes
2 answers

How to catch non-MVC and non-REST exceptions in Spring Boot

I've been able to find endless amounts of tutorials on how to catch unhandled exceptions in Spring MVC or Spring REST, but what I want to know is how to catch unhandled exceptions without using the Spring Web framework at all. I am writing an…
Mitch Talmadge
  • 4,638
  • 3
  • 26
  • 44
5
votes
1 answer

Generic panic recovering in go programs

I’m trying to catch crashes/panics from go routines that are created in my program, in order to send them to my crash-error-reporting server (such as Sentry/Raygun) For example, func main() { go func() { // Get this panic …
Or Nahum
  • 173
  • 1
  • 1
  • 5
5
votes
1 answer

Why do my stack traces only include line numbers if the debugger is attached?

I have a Xamarin.Android application that reports crashes to Raygun. The stack traces reported to Raygun from Release builds do not include line numbers. If I give the Release build configuration the same settings as the Debug configuration in the…
5
votes
2 answers

How to capture MVXTrace in error reporting tool

I'm using MvvmCross and playing around with some ways to get the MvxTrace in my reporting tool. In this case I'm using Raygun. Raygun gives me the option of including additional messages to the error message that I want to throw, which is what I'm…
PkL728
  • 955
  • 8
  • 21
4
votes
1 answer

How do I configure an Azure App Service setting that isn't in the section of the web.config?

I'm using deployment slots in an Azure App Service and overriding several web.config values by using Application Settings in each slot. I have a setting for Raygun, an error tracking service that is in a special section of the web.config. The Raygun…
Jon Crowell
  • 21,695
  • 14
  • 89
  • 110
4
votes
2 answers

How to disable Raygun.io client via app configuration?

I have Raygun.io client integrated into the latest release of our server application that is run by the enterprise customers. Unfortunately, some of them may not like to send any data outside of their network and they will want to disable the…
4
votes
2 answers

Raygun with log4net not logging

I have a simple console app. Downloaded log4net nuget package as well as log4net raygun nuget package: https://www.nuget.org/packages/log4net.Raygun/. I've set up my app to log exceptions and info messages and I do get those in my log file, but NOT…
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
3
votes
1 answer

Raygun Rich User Tracking?

Raygun boasts of Rich User Tracking. However they ask us to provide the following data: // V2 rg4js('setUser', { identifier: 'user_email_address@localhost.local', isAnonymous: false, email: 'emailaddress@localhost.local', firstName: 'Foo', …
2
votes
1 answer

Disable RayGun in development

I'd like to disable raygun in development. Any console.logs I have are coming from raygun.umd.js rather than my own javascript files. I've tried not importing it in my app.module but it's still taking over my console. It seems that if there's…
abyrne85
  • 1,370
  • 16
  • 33
2
votes
1 answer

babel polyfill catches my errors in place of letting bubble them

I'm using raygun to keep track of my front-end errors. Raygun exploits the EventError by hooking on the window.onerror property. So far so good. My application is written in ES6 and it uses generators. I use babel to write ES6 web browser compliant…
Bertuz
  • 2,390
  • 3
  • 25
  • 50
2
votes
0 answers

Xamarin mac crash reporting system

Is there any free tool to get crash reports from my xamarin. mac application? For now the only tool I found, which has xamarin support is Raygan crash reporting system here is link
Nininea
  • 2,671
  • 6
  • 31
  • 57
2
votes
1 answer

log4net logging UnhandledException exceptions from different projects

I have several projects in my solution, most of which are windows services. I have log4net configured for each (generating a separate log file for each), as well as Raygun appender for log4net. I would like to catch UnhandledException for each of…
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
1
vote
0 answers

Xhr request errors are not getting logged on Raygun platform

I have integrated Raygun into one of my angular project and I'm also able to get some of the JavaScript related errors but not reference, syntax and type error on Raygun platform. Though Raygun is not logging any xhr related errors on their…
1
vote
1 answer

Error out of nowhere: "Cannot invoke an expression whose type lacks a call signature. Type 'RaygunStatic' has no compatible call signatures."

We have an angular / ionic app using typescript with the raygun library installed. Until today it has been building fine, just today I have started getting the following error when building "Cannot invoke an expression whose type lacks a call…
Rob Ormond
  • 123
  • 1
  • 9
1
vote
1 answer

Angular version 6 Raygun setup issue with typescript

Angular version 6 Raygun setup issue with typescript Error: ERROR in src/app/app.raygun.setup.ts(6,20): error TS2304: Cannot find name 'RaygunV2'. It doesn't seem to like this line: declare let rg4js: RaygunV2; I installed these npms for…
AngularM
  • 15,982
  • 28
  • 94
  • 169
1
2 3